/* Divine Temple Navigation Bar Styling - Transcendent Edition */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cormorant:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Cormorant', serif;
  background: radial-gradient(circle at center, #0f052f 0%, #080416 100%);
  color: #e6e6ff;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Cosmic Background Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(93, 63, 211, 0.2) 0%, transparent 20%),
    radial-gradient(circle at 75% 60%, rgba(157, 78, 221, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(255, 215, 0, 0.1) 0%, transparent 15%);
  pointer-events: none;
  z-index: -1;
}

/* Sparkling Stars Effect */
@keyframes twinkle {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.8;
  }
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 10% 10%, rgba(255, 255, 255, 0.9) 100%, transparent),
    radial-gradient(1px 1px at 20% 20%, rgba(255, 255, 255, 0.9) 100%, transparent),
    radial-gradient(1px 1px at 30% 30%, rgba(255, 215, 0, 0.9) 100%, transparent),
    radial-gradient(1px 1px at 40% 40%, rgba(255, 255, 255, 0.9) 100%, transparent),
    radial-gradient(2px 2px at 50% 50%, rgba(255, 215, 0, 0.9) 100%, transparent),
    radial-gradient(1px 1px at 60% 60%, rgba(255, 255, 255, 0.9) 100%, transparent),
    radial-gradient(1px 1px at 70% 70%, rgba(255, 215, 0, 0.9) 100%, transparent),
    radial-gradient(1px 1px at 80% 80%, rgba(255, 255, 255, 0.9) 100%, transparent),
    radial-gradient(1px 1px at 90% 90%, rgba(255, 215, 0, 0.9) 100%, transparent);
  background-size: 100% 100%;
  animation: twinkle 8s infinite alternate;
  pointer-events: none;
  opacity: 0.3;
  z-index: -1;
}

/* Navigation Bar */
#rsm-base-nav-section {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(to right, rgba(15, 5, 47, 0.85), rgba(8, 4, 22, 0.85));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glowing Border Effect */
#rsm-base-nav-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(255, 215, 0, 0) 0%,
      rgba(255, 215, 0, 0.8) 20%,
      rgba(255, 215, 0, 1) 50%,
      rgba(255, 215, 0, 0.8) 80%,
      rgba(255, 215, 0, 0) 100%);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.4);
  animation: divine-glow 6s infinite alternate;
}

@keyframes divine-glow {
  0% {
    opacity: 0.7;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.4);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.9), 0 0 40px rgba(255, 215, 0, 0.6);
  }

  100% {
    opacity: 0.7;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.4);
  }
}

#rsm-base-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  position: relative;
  /* padding-bottom: 80px; */
}

/* Cosmic Particles */
@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.2;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-15px) translateX(15px) rotate(360deg);
    opacity: 0.2;
  }
}

.cosmic-particle {
  position: absolute;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 10px #ffd700;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  animation: float-particle 7s infinite ease-in-out;
}

/* Logo Styling */
#rsm-base-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.8rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

#rsm-base-nav-logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#rsm-base-nav-logo:hover::before {
  opacity: 1;
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
}

#rsm-base-nav-logo:hover {
  transform: scale(1.03);
}

#rsm-base-nav-logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

#rsm-base-nav-logo:hover #rsm-base-nav-logo-img {
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)) brightness(1.2);
  animation: divine-pulse 3s infinite;
}

@keyframes divine-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

#rsm-base-nav-logo-text {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  letter-spacing: 1px;
}

#rsm-base-nav-logo-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  transition: width 0.5s ease;
}

#rsm-base-nav-logo:hover #rsm-base-nav-logo-text::after {
  width: 100%;
}

#rsm-base-nav-logo:hover #rsm-base-nav-logo-text {
  color: #fff8e0;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Mobile Toggle Button */
#rsm-base-nav-toggler {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  padding: 0.6rem;
  width: 45px;
  height: 45px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2000;
}

#rsm-base-nav-toggler::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
}

#rsm-base-nav-toggler:hover::before {
  transform: scale(1.5);
}

#rsm-base-nav-toggler-icon {
  display: block;
  position: relative;
  width: 22px;
  height: 2px;
  background-color: #ffd700;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0 auto;
}

#rsm-base-nav-toggler-icon::before,
#rsm-base-nav-toggler-icon::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #ffd700;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

#rsm-base-nav-toggler-icon::before {
  transform: translateY(-7px);
}

#rsm-base-nav-toggler-icon::after {
  transform: translateY(7px);
}

#rsm-base-nav-toggler:hover #rsm-base-nav-toggler-icon,
#rsm-base-nav-toggler:hover #rsm-base-nav-toggler-icon::before,
#rsm-base-nav-toggler:hover #rsm-base-nav-toggler-icon::after {
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

/* Navigation Menu */
#rsm-base-nav-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

#rsm-base-nav-menu-list {
  display: flex;
  list-style: none;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
}

#rsm-base-nav-menu-list li {
  position: relative;
}

#rsm-base-nav-menu-list li a {
  display: block;
  padding: 0.75rem 1.2rem;
  color: #e6e6ff;
  text-decoration: none;
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Divine Light Effect */
#rsm-base-nav-menu-list li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 80%);
  opacity: 0;
  z-index: -1;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#rsm-base-nav-menu-list li a:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

#rsm-base-nav-menu-list li a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* Divine Underline Effect */
#rsm-base-nav-menu-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      #ffd700 50%,
      transparent 100%);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
  box-shadow: 0 0 10px #ffd700;
}

#rsm-base-nav-menu-list li a:hover::after {
  width: 80%;
}

/* Special styling for Login */
#rsm-base-nav-menu-item-contact:last-child a {
  background: linear-gradient(135deg, #ff3547, #ffd700);
  color: #1a1a2e;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  margin-left: 1rem;
  box-shadow: 0 0 15px rgba(255, 53, 71, 0.4), inset 0 0 15px rgba(255, 215, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

#rsm-base-nav-menu-item-contact:last-child a::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 50%;
}

#rsm-base-nav-menu-item-contact:last-child a:hover::before {
  transform: scale(1);
}

#rsm-base-nav-menu-item-contact:last-child a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 53, 71, 0.6), 0 0 40px rgba(255, 215, 0, 0.3), inset 0 0 15px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ff1a33, #ffea00);
  border: 1px solid rgba(255, 215, 0, 0.6);
  letter-spacing: 1.5px;
}

#rsm-base-nav-menu-item-contact:last-child a::after {
  display: none;
}

/* Menu Item Animation */
@keyframes divine-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

#rsm-base-nav-menu-list li a:hover {
  animation: divine-float 2s infinite ease-in-out;
}

/* Divine Responsive Styles */
@media (max-width: 992px) {
  #rsm-base-nav-container {
    padding: 0.5rem 1.5rem;
  }

  #rsm-base-nav-menu-list li a {
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
  }

  #rsm-base-nav-menu-item-contact:last-child a {
    padding: 0.6rem 1.2rem;
    margin-left: 0.5rem;
  }
}

@media (max-width: 768px) {
  #rsm-base-nav-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open #rsm-base-nav-toggler {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  }

  body.menu-open #rsm-base-nav-toggler-icon {
    background-color: transparent;
    box-shadow: none;
  }

  body.menu-open #rsm-base-nav-toggler-icon::before {
    transform: rotate(45deg);
    background-color: #ff3547;
  }

  body.menu-open #rsm-base-nav-toggler-icon::after {
    transform: rotate(-45deg);
    background-color: #ff3547;
  }

  #rsm-base-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 5, 47, 0.95), rgba(8, 4, 22, 0.95));
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    padding: 6rem 2rem 2rem;
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    backdrop-filter: blur(10px);
  }

  body.menu-open #rsm-base-nav-menu {
    right: 0;
  }

  /* Mobile menu divine effect */
  body.menu-open #rsm-base-nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 60%, rgba(255, 53, 71, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
  }

  #rsm-base-nav-menu-list {
    flex-direction: column;
    gap: 0.7rem;
  }

  #rsm-base-nav-menu-list li a {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    border-left: 3px solid transparent;
    background: rgba(255, 215, 0, 0.05);
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.menu-open #rsm-base-nav-menu-list li a {
    transform: translateX(0);
    opacity: 1;
  }

  /* Staggered animation for menu items */
  body.menu-open #rsm-base-nav-menu-list li:nth-child(1) a {
    transition-delay: 0.1s;
  }

  body.menu-open #rsm-base-nav-menu-list li:nth-child(2) a {
    transition-delay: 0.15s;
  }

  body.menu-open #rsm-base-nav-menu-list li:nth-child(3) a {
    transition-delay: 0.2s;
  }

  body.menu-open #rsm-base-nav-menu-list li:nth-child(4) a {
    transition-delay: 0.25s;
  }

  body.menu-open #rsm-base-nav-menu-list li:nth-child(5) a {
    transition-delay: 0.3s;
  }

  body.menu-open #rsm-base-nav-menu-list li:nth-child(6) a {
    transition-delay: 0.35s;
  }

  body.menu-open #rsm-base-nav-menu-list li:nth-child(7) a {
    transition-delay: 0.4s;
  }

  #rsm-base-nav-menu-list li a:hover {
    border-left-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding-left: 2rem;
  }

  #rsm-base-nav-menu-list li a::after {
    left: 0;
    bottom: 50%;
    width: 3px;
    height: 0;
    transform: translateY(50%);
  }

  #rsm-base-nav-menu-list li a:hover::after {
    height: 50%;
    width: 3px;
  }

  #rsm-base-nav-menu-item-contact:last-child a {
    margin: 1rem 0 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #rsm-base-nav-container {
    padding: 0.5rem 1rem;
  }

  #rsm-base-nav-logo-text {
    font-size: 1.2rem;
  }

  #rsm-base-nav-logo-img {
    height: 40px;
  }

  #rsm-base-nav-menu {
    width: 85%;
  }
}

/* Divine Decorative Elements */
.divine-om-symbol {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  opacity: 0.3;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 5px #ffd700);
}

.divine-om-symbol:hover {
  opacity: 0.7;
  filter: drop-shadow(0 0 10px #ffd700);
  transform: scale(1.2) rotate(10deg);
}

.divine-om-symbol svg {
  width: 100%;
  height: 100%;
  fill: #ffd700;
}

/* Divine Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  background: rgba(15, 5, 47, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ffd700, #ff9d00);
  border-radius: 5px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #ffea00, #ffa500);
}

::-webkit-scrollbar-track {
  background: rgba(8, 4, 22, 0.8);
  border-radius: 5px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
}

/* Selection Color */
::selection {
  background: rgba(255, 215, 0, 0.3);
  color: white;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}









/* Footer with Divine Mystical Theme */
#rsm-base-footer-section {
  background: linear-gradient(to bottom, #0c0c14, #151520);
  color: #d4b98c;
  padding: 3rem 0 1.5rem;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(212, 185, 140, 0.3);
}

/* Decorative elements */
#rsm-base-footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 185, 140, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 185, 140, 0.1) 0%, transparent 40%);
  z-index: 0;
}

#rsm-base-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

#rsm-base-footer-row-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

#rsm-base-footer-column-1,
#rsm-base-footer-column-2,
#rsm-base-footer-column-3 {
  flex: 1;
  min-width: 250px;
}

/* Title styling with golden glow */
#rsm-base-footer-title {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: #f1d197;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(241, 209, 151, 0.3);
  position: relative;
  display: inline-block;
}

#rsm-base-footer-title::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #d4b98c, transparent);
}

/* Address styling */
#rsm-base-footer-address {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a99678;
}

/* Quick links section */
#rsm-base-footer-quick-links-title,
#rsm-base-footer-contact-title {
  font-size: 1.3rem;
  color: #f1d197;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

#rsm-base-footer-quick-links-title::after,
#rsm-base-footer-contact-title::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #d4b98c, transparent);
}

#rsm-base-footer-quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#rsm-base-footer-quick-links-list li {
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

#rsm-base-footer-quick-links-list li:hover {
  transform: translateX(5px);
}

#rsm-base-footer-quick-links-list a {
  color: #a99678;
  text-decoration: none;
  position: relative;
  padding-left: 15px;
  transition: color 0.3s ease;
}

#rsm-base-footer-quick-links-list a::before {
  content: "॥";
  position: absolute;
  left: 0;
  color: #d4b98c;
  opacity: 0.8;
}

#rsm-base-footer-quick-links-list a:hover {
  color: #f1d197;
  text-shadow: 0 0 5px rgba(241, 209, 151, 0.3);
}

/* Contact section */
#rsm-base-footer-contact-info {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a99678;
}

/* Social icons */
#rsm-base-footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

#rsm-base-footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 185, 140, 0.1);
  border: 1px solid rgba(212, 185, 140, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4b98c;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#rsm-base-footer-social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(241, 209, 151, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#rsm-base-footer-social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(241, 209, 151, 0.4);
  color: #f1d197;
  border-color: rgba(241, 209, 151, 0.6);
}

#rsm-base-footer-social-icons a:hover::before {
  opacity: 1;
}

/* Divider */
#rsm-base-footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 185, 140, 0.5), transparent);
  margin: 2rem 0 1.5rem;
}

/* Copyright */
#rsm-base-footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(212, 185, 140, 0.7);
}

/* Subtle animation for spiritual ambiance */
@keyframes divine-glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(241, 209, 151, 0.3);
  }

  50% {
    box-shadow: 0 0 15px rgba(241, 209, 151, 0.5);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #rsm-base-footer-row-1 {
    flex-direction: column;
  }

  #rsm-base-footer-column-1,
  #rsm-base-footer-column-2,
  #rsm-base-footer-column-3 {
    width: 100%;
    margin-bottom: 2rem;
  }
}






/* Divine Mystical Hero Section Styling */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Poppins:wght@300;400;600&display=swap');



/* Main Hero Section */
#rsm-index-hero-section {
  background: radial-gradient(circle at center, #141429 0%, #0a0a16 50%, #07070c 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

#rsm-index-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.8;
  z-index: 0;
}

/* Main Heading */
#rsm-index-hero-heading {
  font-family: 'Cinzel Decorative', serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #d4af37;
  text-shadow: 0 0 15px #f1d78a, 0 0 30px rgba(212, 175, 55, 0.4);
  position: relative;
  z-index: 2;
  text-align: center;
  letter-spacing: 2px;
  animation: divine-entrance 1.5s ease-out;
}

@keyframes divine-entrance {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Welcome Heading */
#rsm-index-hero-welcome-heading {
  font-family: 'Cinzel Decorative', serif;
  color: #f8f0e3;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-shadow: 0 0 10px rgba(248, 240, 227, 0.3);
  position: relative;
  animation: floating 3s ease-in-out infinite;
}

/* Sacred Verse Scroll */
.scroll-container {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.scroll-text {
  animation: scroll-left 15s linear infinite;
  white-space: nowrap;
}

.scroll-text h3 {
  font-family: 'Poppins', sans-serif;
  color: #f1d78a;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Hero Container */
#rsm-index-hero-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Hero Content */
#rsm-index-hero-content {
  flex: 1;
  padding: 2rem;
  background: rgba(7, 7, 12, 0.7);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  margin-right: 2rem;
  animation: content-reveal 1.8s ease-out;
}

#rsm-index-hero-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: divine-light 10s linear infinite;
}

@keyframes divine-light {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#rsm-index-hero-welcome-lead {
  font-family: 'Poppins', sans-serif;
  color: #f8f0e3;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  text-align: justify;
  font-weight: 300;
  margin-bottom: 1rem;
}

/* Carousel */
#rsm-index-hero-carousel {
  flex: 1.5;
  position: relative;
  animation: float-in 2s ease-out;
}

@keyframes float-in {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.rsm-index-hero-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px #9c7c21;
  border: 2px solid #9c7c21;
}

.rsm-index-hero-carousel-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(7, 7, 12, 0.8) 0%, transparent 50%);
  z-index: 3;
  pointer-events: none;
}

.rsm-index-hero-carousel-slides {
  position: relative;
  height: 500px;
}

.rsm-index-hero-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.rsm-index-hero-carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.rsm-index-hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1) saturate(1.2);
}

.rsm-index-hero-carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: rgba(7, 7, 12, 0.7);
  backdrop-filter: blur(8px);
  z-index: 4;
}

.rsm-index-hero-carousel-caption p {
  font-family: 'Poppins', sans-serif;
  color: #f1d78a;
  font-size: 1rem;
  margin: 0;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.6);
}

/* Carousel Controls */
.rsm-index-hero-carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.rsm-index-hero-carousel-prev,
.rsm-index-hero-carousel-next {
  background: rgba(7, 7, 12, 0.7);
  color: #d4af37;
  border: 1px solid #9c7c21;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.rsm-index-hero-carousel-prev:hover,
.rsm-index-hero-carousel-next:hover {
  background: #9c7c21;
  color: #f8f0e3;
  transform: scale(1.1);
  box-shadow: 0 0 15px #f1d78a;
}

.rsm-index-hero-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
}

.rsm-index-hero-carousel-dot {
  width: 12px;
  height: 12px;
  background: rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rsm-index-hero-carousel-dot.active {
  background: #d4af37;
  transform: scale(1.2);
  box-shadow: 0 0 10px #f1d78a;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes content-reveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  #rsm-index-hero-container {
    flex-direction: column;
  }

  #rsm-index-hero-content {
    margin-right: 0;
    margin-bottom: 2rem;
    width: 100%;
  }

  #rsm-index-hero-carousel {
    width: 100%;
  }

  #rsm-index-hero-heading {
    font-size: 3rem;
  }

  #rsm-index-hero-welcome-heading {
    font-size: 2rem;
  }

  .rsm-index-hero-carousel-slides {
    height: 400px;
  }
}

@media (max-width: 768px) {
  #rsm-index-hero-heading {
    font-size: 2.5rem;
  }

  #rsm-index-hero-welcome-heading {
    font-size: 1.75rem;
  }

  .scroll-text h3 {
    font-size: 1.2rem;
  }

  .rsm-index-hero-carousel-slides {
    height: 350px;
  }
}

@media (max-width: 576px) {
  #rsm-index-hero-heading {
    font-size: 2rem;
  }

  #rsm-index-hero-welcome-heading {
    font-size: 1.5rem;
  }

  .rsm-index-hero-carousel-slides {
    height: 300px;
  }
}




/* Divine Mystical Announcements Section Styling */
#rsm-index-announcements-section {
  background: linear-gradient(to bottom, #0c0711 0%, #17061f 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Cosmic dust particles background effect */
#rsm-index-announcements-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 2px, transparent 4px),
    radial-gradient(circle at 75% 40%, rgba(255, 215, 0, 0.07) 1px, transparent 3px),
    radial-gradient(circle at 35% 65%, rgba(255, 215, 0, 0.03) 1px, transparent 2px),
    radial-gradient(circle at 90% 85%, rgba(255, 215, 0, 0.06) 2px, transparent 4px);
  background-size: 150px 150px;
  animation: floatingStars 60s linear infinite;
  z-index: 0;
}

@keyframes floatingStars {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 150px 150px;
  }
}

#rsm-index-announcements-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

#rsm-index-announcements-heading {
  color: #f8d56b;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  position: relative;
}

#rsm-index-announcements-heading::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, #f8d56b, transparent);
}

#rsm-index-announcements-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

#rsm-index-announcements-column-1 {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

#rsm-index-announcements-card-1 {
  background: linear-gradient(145deg, rgba(33, 16, 42, 0.85) 0%, rgba(12, 7, 17, 0.95) 100%);
  border: 1px solid rgba(248, 213, 107, 0.15);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(248, 213, 107, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

#rsm-index-announcements-card-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(248, 213, 107, 0.2);
}

/* Glowing border effect on hover */
#rsm-index-announcements-card-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(45deg, transparent, rgba(248, 213, 107, 0.2), transparent);
  mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

#rsm-index-announcements-card-1:hover::before {
  opacity: 1;
}

#rsm-index-announcements-card-body-1 {
  padding: 2rem;
}

#rsm-index-announcements-card-title-1 {
  color: #f8d56b;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

#rsm-index-announcements-card-subtitle-1 {
  color: #c9a95c;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

#rsm-index-announcements-card-text-1 {
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

#rsm-index-announcements-card-footer-1 {
  padding: 1rem 2rem 2rem;
  text-align: right;
}

#rsm-index-announcements-read-more-button-1 {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, rgba(248, 213, 107, 0.15) 0%, rgba(248, 213, 107, 0.05) 100%);
  color: #f8d56b;
  border: 1px solid rgba(248, 213, 107, 0.3);
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#rsm-index-announcements-read-more-button-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(248, 213, 107, 0.2), transparent);
  transition: left 0.7s ease;
}

#rsm-index-announcements-read-more-button-1:hover {
  background: linear-gradient(135deg, rgba(248, 213, 107, 0.2) 0%, rgba(248, 213, 107, 0.1) 100%);
  box-shadow: 0 0 15px rgba(248, 213, 107, 0.2);
  transform: translateY(-2px);
}

#rsm-index-announcements-read-more-button-1:hover::before {
  left: 100%;
}

#rsm-index-announcements-view-all {
  text-align: center;
  margin-top: 3rem;
}

#rsm-index-announcements-view-all-button {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background: linear-gradient(135deg, rgba(248, 213, 107, 0.12) 0%, rgba(248, 213, 107, 0.04) 100%);
  color: #f8d56b;
  border: 1px solid rgba(248, 213, 107, 0.25);
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(248, 213, 107, 0.1);
}

#rsm-index-announcements-view-all-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(248, 213, 107, 0.2), transparent);
  transition: left 0.7s ease;
}

#rsm-index-announcements-view-all-button:hover {
  background: linear-gradient(135deg, rgba(248, 213, 107, 0.18) 0%, rgba(248, 213, 107, 0.08) 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(248, 213, 107, 0.2);
  transform: translateY(-3px);
}

#rsm-index-announcements-view-all-button:hover::before {
  left: 100%;
}

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Poppins:wght@300;400&display=swap');

/* Responsive adjustments */
@media (max-width: 768px) {
  #rsm-index-announcements-section {
    padding: 3rem 1.5rem;
  }

  #rsm-index-announcements-heading {
    font-size: 2.2rem;
  }

  #rsm-index-announcements-card-title-1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  #rsm-index-announcements-section {
    padding: 2.5rem 1rem;
  }

  #rsm-index-announcements-heading {
    font-size: 2rem;
  }

  #rsm-index-announcements-card-body-1 {
    padding: 1.5rem;
  }
}


/* Divine Mystical Contact Section Styling */

/* Base styling for the contact section */
#rsm-index-contact-section {
  background: linear-gradient(to bottom, #080216, #110426);
  color: #e2c98f;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
}

/* Cosmic background with stars */
#rsm-index-contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 2px, transparent 2px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 60% 20%, rgba(255, 215, 0, 0.07) 1.5px, transparent 1.5px),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 300px 300px;
  opacity: 0.8;
  z-index: 0;
  animation: twinkling 8s infinite linear;
}

@keyframes twinkling {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 300px 300px;
  }
}

/* Container styling with divine glow */
#rsm-index-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Heading with divine golden glow */
#rsm-index-contact-heading {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #f3d58e;
  font-weight: normal;
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(243, 213, 142, 0.7),
    0 0 20px rgba(243, 213, 142, 0.4);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

#rsm-index-contact-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #f3d58e, transparent);
  opacity: 0.7;
}

/* Row styling for the two columns */
#rsm-index-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Column styling */
#rsm-index-contact-column-1,
#rsm-index-contact-column-2 {
  flex: 1;
  min-width: 300px;
}

/* Card styling with mystical borders */
#rsm-index-contact-card-1,
#rsm-index-contact-card-3 {
  background: rgba(16, 8, 36, 0.7);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(243, 213, 142, 0.15);
  transition: all 0.3s ease;
  height: 100%;
}

/* Glowing border effect on hover */
#rsm-index-contact-card-1:hover,
#rsm-index-contact-card-3:hover {
  box-shadow: 0 8px 25px rgba(243, 213, 142, 0.3);
  transform: translateY(-5px);
  border: 1px solid rgba(243, 213, 142, 0.3);
}

/* Divine corners with decorative elements */
#rsm-index-contact-card-1::before,
#rsm-index-contact-card-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-top: 2px solid rgba(243, 213, 142, 0.6);
  border-left: 2px solid rgba(243, 213, 142, 0.6);
  border-radius: 5px 0 0 0;
}

#rsm-index-contact-card-1::after,
#rsm-index-contact-card-3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid rgba(243, 213, 142, 0.6);
  border-right: 2px solid rgba(243, 213, 142, 0.6);
  border-radius: 0 0 5px 0;
}

/* Card body styling */
#rsm-index-contact-card-body-1,
#rsm-index-contact-card-body-3 {
  padding: 30px;
}

/* Card title styling */
#rsm-index-contact-card-title-1,
#rsm-index-contact-card-title-2,
#rsm-index-contact-card-title-3 {
  color: #f3d58e;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: normal;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(243, 213, 142, 0.4);
  position: relative;
  display: inline-block;
}

#rsm-index-contact-card-title-1::after,
#rsm-index-contact-card-title-2::after,
#rsm-index-contact-card-title-3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #f3d58e, transparent);
}

/* Text styling for address and details */
#rsm-index-contact-card-text-1 {
  color: #e2c98f;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

#rsm-index-contact-phone,
#rsm-index-contact-email,
#rsm-index-contact-hours {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 1rem;
}

/* Strong tags for emphasis */
strong {
  color: #f5dca0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Map container styling */
#rsm-index-contact-map-container {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(243, 213, 142, 0.2);
}

/* Map iframe styling */
#rsm-index-contact-map {
  width: 100%;
  height: 250px;
  border: none;
}

/* Form styling with divine elements */
#rsm-index-contact-form {
  margin-top: 15px;
}



/* Form group styling */
#rsm-index-contact-form-group-1,
#rsm-index-contact-form-group-2,
#rsm-index-contact-form-group-3,
#rsm-index-contact-form-group-4,
#rsm-index-contact-form-group-5 {
  margin-bottom: 20px;
}

/* Form label styling */
#rsm-index-contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #f3d58e;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Form input styling */
#rsm-index-contact-form input,
#rsm-index-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(22, 13, 40, 0.7);
  border: 1px solid rgba(243, 213, 142, 0.2);
  border-radius: 5px;
  color: #f3d58e;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Form input focus effect */
#rsm-index-contact-form input:focus,
#rsm-index-contact-form textarea:focus {
  outline: none;
  border-color: rgba(243, 213, 142, 0.5);
  box-shadow: 0 0 10px rgba(243, 213, 142, 0.3);
  background: rgba(30, 18, 60, 0.7);
}

/* Submit button with divine glow */
#rsm-index-contact-submit-button {
  background: linear-gradient(to right, #8b6b29, #c8a951, #8b6b29);
  color: #110426;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

/* Button hover effect */
#rsm-index-contact-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 213, 142, 0.4);
}

/* Button active effect */
#rsm-index-contact-submit-button:active {
  transform: translateY(1px);
}

/* Button glow effect */
#rsm-index-contact-submit-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#rsm-index-contact-submit-button:hover::before {
  opacity: 1;
  animation: ripple 1s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0.9);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  #rsm-index-contact-row {
    flex-direction: column;
  }

  #rsm-index-contact-heading {
    font-size: 2.5rem;
  }

  #rsm-index-contact-card-title-1,
  #rsm-index-contact-card-title-2,
  #rsm-index-contact-card-title-3 {
    font-size: 1.5rem;
  }

  #rsm-index-contact-map {
    height: 200px;
  }
}

/* Divine Bhagavad Gita Section - Core Styling */
.bg-verse-section {
  background: linear-gradient(135deg, #0a0a14 0%, #121224 50%, #0c0c18 100%);
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
  font-family: 'Cormorant Garamond', serif;
  color: #e2d9bc;
}

/* Cosmic Background Effects */
.bg-verse-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(74, 63, 120, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(118, 77, 144, 0.12) 0%, transparent 30%);
  z-index: 0;
}

/* Subtle Stars/Divine Light Points */
.bg-verse-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 1px),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 1px),
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 1px),
    radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 1px);
  background-size: 120px 120px;
  z-index: 0;
}

.bg-verse-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 17, 34, 0.9) 0%, rgba(25, 23, 44, 0.9) 100%);
  padding: 2rem;
  overflow: hidden;
}

/* Divine Golden Border Animation */
@keyframes borderGlow {
  0% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3), inset 0 0 5px rgba(212, 175, 55, 0.1);
  }

  50% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5), inset 0 0 8px rgba(212, 175, 55, 0.2);
  }

  100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3), inset 0 0 5px rgba(212, 175, 55, 0.1);
  }
}

.bg-verse-container:hover {
  animation: borderGlow 3s infinite ease-in-out;
}

/* Header Section */
.bg-verse-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.bg-verse-title {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  color: #d4af37;
  letter-spacing: 2px;
  margin: 0 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.bg-verse-title span {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-left: 0.5rem;
}

/* Ornamental Decorations */
.bg-verse-ornament {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(212, 175, 55, 0.2) 20%,
      rgba(212, 175, 55, 0.6) 50%,
      rgba(212, 175, 55, 0.2) 80%,
      transparent);
  position: relative;
}

.bg-verse-ornament::before,
.bg-verse-ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 8px #d4af37;
}

.bg-verse-ornament::before {
  left: 50%;
}

.bg-verse-ornament::after {
  right: 10%;
}

/* Content Layout */
.bg-verse-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
}

.bg-verse-left {
  flex: 3;
  min-width: 300px;
}

.bg-verse-right {
  flex: 2;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sanskrit Text Styling */
.bg-verse-sanskrit {
  margin-bottom: 1.5rem;
}

.bg-verse-sanskrit p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #f5e7c2;
  text-shadow: 0 0 5px rgba(245, 231, 194, 0.2);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Translation Styling */
.bg-verse-translation {
  margin-bottom: 2rem;
}

.bg-verse-translation p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #bdb299;
  font-style: italic;
  font-weight: 300;
}

/* Verse Separator */
.bg-verse-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  position: relative;
}

.bg-verse-separator span {
  display: block;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(212, 175, 55, 0.2) 30%,
      rgba(212, 175, 55, 0.6) 50%,
      rgba(212, 175, 55, 0.2) 70%,
      transparent);
}

.bg-verse-separator::after {
  content: '॥';
  position: absolute;
  font-size: 1.5rem;
  color: #d4af37;
  background-color: rgba(25, 23, 44, 0.9);
  padding: 0 1rem;
}

/* Image Styling */
.bg-verse-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
}

.bg-verse-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease-in-out;
  position: relative;
  z-index: 1;
}

.bg-verse-image:hover {
  transform: scale(1.02);
}

/* Divine Glow Effect Around Image */
.bg-verse-image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.6;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.bg-verse-image-container:hover .bg-verse-image-glow {
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .bg-verse-content {
    flex-direction: column;
  }

  .bg-verse-right {
    order: -1;
    margin-bottom: 2rem;
  }

  .bg-verse-title {
    font-size: 1.7rem;
  }

  .bg-verse-title span {
    font-size: 1.3rem;
  }

  .bg-verse-sanskrit p {
    font-size: 1.3rem;
  }

  .bg-verse-translation p {
    font-size: 1.1rem;
  }
}

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&display=swap');
/* Divine Animation and Enhancement Styles */

/* Om Symbol Watermark */
.bg-om-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23d4af37' d='M50,10c-22.1,0-40,17.9-40,40s17.9,40,40,40s40-17.9,40-40S72.1,10,50,10z M50,80c-16.5,0-30-13.5-30-30s13.5-30,30-30s30,13.5,30,30S66.5,80,50,80z'/%3E%3Cpath fill='%23d4af37' d='M61.3,30.1c-3.1-1.7-6.7-2.7-10.5-2.7c-5.8,0-11.1,2.2-15,5.8c-0.6,0.5-0.6,1.4-0.1,2c0.5,0.6,1.4,0.6,2,0.1c3.4-3.1,7.9-5,12.9-5c3.2,0,6.2,0.8,8.8,2.3c0.7,0.4,1.5,0.1,1.9-0.5C61.6,31.4,61.9,30.5,61.3,30.1z'/%3E%3Cpath fill='%23d4af37' d='M68.8,50c0-5.4-1.8-10.4-4.9-14.4c-0.5-0.6-1.4-0.7-2-0.2c-0.6,0.5-0.7,1.4-0.2,2c2.6,3.3,4.1,7.5,4.1,12c0,10.8-8.7,19.5-19.5,19.5c-9,0-16.6-6.2-18.8-14.5c-0.2-0.7-0.9-1.2-1.7-1c-0.7,0.2-1.2,0.9-1,1.7c2.5,9.6,11.3,16.8,21.5,16.8C58.7,72,68.8,62,68.8,50z'/%3E%3Cpath fill='%23d4af37' d='M49.8,27.1c0.8,0,1.4-0.6,1.4-1.4v-4.3c0-0.8-0.6-1.4-1.4-1.4c-0.8,0-1.4,0.6-1.4,1.4v4.3C48.4,26.5,49,27.1,49.8,27.1z'/%3E%3Cpath fill='%23d4af37' d='M50,40c-5.5,0-10,4.5-10,10s4.5,10,10,10s10-4.5,10-10S55.5,40,50,40z M50,57c-3.9,0-7-3.1-7-7s3.1-7,7-7s7,3.1,7,7S53.9,57,50,57z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

/* Divine Particles Background */
.bg-divine-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.bg-divine-particles::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 3px),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 2px);
  background-size: 120px 120px;
  animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 120px 120px;
  }
}

/* Divine Light Rays */
.bg-divine-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% -20%, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  opacity: 0;
  animation: raysPulse 8s infinite ease-in-out;
  z-index: 0;
  pointer-events: none;
}

@keyframes raysPulse {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
  }
}

/* Lotus Frame around Image */
.bg-verse-lotus-frame {
  position: absolute;
  top: -8%;
  left: -8%;
  width: 116%;
  height: 116%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Cpath fill='none' stroke='%23d4af37' stroke-width='1' d='M250,30c0,0,40,60,120,80c0,0-40,100-120,120c0,0-40-60-120-80C130,150,170,50,250,30z M250,30c0,0-40,60-120,80c0,0,40,100,120,120c0,0,40-60,120-80C370,150,330,50,250,30z M250,30c0,0,0,80,0,200 M250,30c0,0,60,40,80,120 M250,30c0,0-60,40-80,120 M250,230c0,0,60,40,80,120 M250,230c0,0-60,40-80,120 M250,230c0,0,0,80,0,200 M250,430c0,0,40-60,120-80 M250,430c0,0-40-60-120-80'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.2;
  z-index: 0;
  transform: rotate(0deg);
  transition: transform 30s linear;
  pointer-events: none;
}

.bg-verse-image-container:hover .bg-verse-lotus-frame {
  transform: rotate(180deg);
}

/* Verse Icon */
.bg-verse-icon {
  position: absolute;
  left: -2rem;
  font-size: 1.2rem;
  color: #d4af37;
  opacity: 0.8;
}

.bg-verse-sanskrit {
  position: relative;
  padding-left: 1rem;
}

/* Subtle Text Animation */
.bg-verse-sanskrit p {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.bg-verse-sanskrit p::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  animation: textUnderline 8s infinite ease;
}

@keyframes textUnderline {
  0% {
    width: 0;
    left: 0;
  }

  50% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

/* Pulse Animation for Title */
@keyframes titlePulse {
  0% {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
  }

  50% {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  }

  100% {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
  }
}

.bg-verse-title {
  animation: titlePulse 5s infinite ease-in-out;
}

/* Image Special Effects */
.bg-verse-image {
  transition: all 0.5s ease;
  filter: contrast(1.05) saturate(1.1);
}

.bg-verse-image-container:hover .bg-verse-image {
  filter: contrast(1.1) saturate(1.2) brightness(1.05);
}

/* Responsive Adjustments for Added Elements */
@media (max-width: 768px) {
  .bg-verse-icon {
    left: -1.5rem;
    font-size: 1rem;
  }

  .bg-verse-lotus-frame {
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
  }
}


/* Divine Guru Dedication Section - Mystical Theme with Golden Accents */

#rsm-index-guru-dedication-section {
  background: linear-gradient(to right, #0a0a14, #14142a, #0a0a14);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8) inset;
}

/* Divine cosmic particles */
#rsm-index-guru-dedication-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 1px, transparent 6px),
    radial-gradient(circle at 30% 65%, rgba(255, 215, 0, 0.05) 1px, transparent 4px),
    radial-gradient(circle at 50% 45%, rgba(255, 215, 0, 0.05) 1px, transparent 7px),
    radial-gradient(circle at 70% 15%, rgba(255, 215, 0, 0.05) 1px, transparent 5px),
    radial-gradient(circle at 90% 70%, rgba(255, 215, 0, 0.05) 1px, transparent 6px);
  pointer-events: none;
  opacity: 0.8;
  animation: sparkleStars 20s infinite linear;
}

#rsm-index-guru-dedication-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#rsm-index-guru-dedication-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

#rsm-index-guru-dedication-column-1 {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  padding: 20px;
}

#rsm-index-guru-dedication-column-2 {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 20px;
}

#rsm-index-guru-dedication-image {
  max-width: 50%;
  height: auto;
  /* border-radius: 50%; */
  box-shadow:
    0 0 0 4px rgba(255, 215, 0, 0.7),
    0 0 20px rgba(255, 215, 0, 0.5),
    0 0 50px rgba(255, 215, 0, 0.2);
  animation: pulseGlow 6s infinite ease-in-out;
  filter: saturate(1.1) contrast(1.1);
  transition: transform 0.7s ease-in-out;
}

#rsm-index-guru-dedication-image:hover {
  transform: scale(1.03);
}

#rsm-index-guru-dedication-heading {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: #ffd700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow:
    0 0 5px rgba(255, 215, 0, 0.7),
    0 0 10px rgba(255, 215, 0, 0.5),
    0 0 15px rgba(255, 215, 0, 0.3);
  animation: gentleFloat 4s infinite alternate ease-in-out;
}

#rsm-index-guru-dedication-text {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: #e6c668;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 0.9;
}

#rsm-index-guru-dedication-verse {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: #ffd700;
  font-size: 2rem;
  letter-spacing: 1px;
  text-shadow:
    0 0 5px rgba(255, 215, 0, 0.7),
    0 0 10px rgba(255, 215, 0, 0.5);
  position: relative;
  display: inline-block;
  padding: 15px 30px;
}

#rsm-index-guru-dedication-verse::before,
#rsm-index-guru-dedication-verse::after {
  content: '';
  position: absolute;
  top: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.7), transparent);
}

#rsm-index-guru-dedication-verse::before {
  left: 0;
}

#rsm-index-guru-dedication-verse::after {
  right: 0;
}

#rsm-index-guru-dedication-verse b {
  position: relative;
  z-index: 1;
}

/* Divine animations */
@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 0 4px rgba(255, 215, 0, 0.7),
      0 0 20px rgba(255, 215, 0, 0.5),
      0 0 50px rgba(255, 215, 0, 0.2);
  }

  50% {
    box-shadow:
      0 0 0 4px rgba(255, 215, 0, 0.7),
      0 0 25px rgba(255, 215, 0, 0.6),
      0 0 70px rgba(255, 215, 0, 0.3);
  }

  100% {
    box-shadow:
      0 0 0 4px rgba(255, 215, 0, 0.7),
      0 0 20px rgba(255, 215, 0, 0.5),
      0 0 50px rgba(255, 215, 0, 0.2);
  }
}

@keyframes gentleFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes sparkleStars {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  #rsm-index-guru-dedication-row {
    flex-direction: column;
  }

  #rsm-index-guru-dedication-heading {
    font-size: 2rem;
  }

  #rsm-index-guru-dedication-text {
    font-size: 1.2rem;
  }

  #rsm-index-guru-dedication-verse {
    font-size: 1.6rem;
  }
}

/* Add font import for Devanagari text */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;700&display=swap');

#rsm-index-hero-section {
  padding-top: 100px;
}


/* Raghavendra Swami Math About Page - Divine Mystical Theme */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* About Page Header Styling */
.rsm-about-page-header {
  background: linear-gradient(180deg, #070216 0%, #1a0933 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.rsm-about-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('static/images/om-pattern.png');
  opacity: 0.1;
  z-index: 1;
}

.rsm-about-header-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.rsm-about-main-heading {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #f8f0e3;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
  padding-top: 20px;
}

.rsm-about-main-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 25%;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* History Section Styling */
.rsm-about-history-section {
  background-color: rgba(10, 2, 25, 0.95);
  padding: 5rem 0;
  position: relative;
}

.rsm-about-history-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rsm-about-history-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.rsm-about-history-text-column {
  flex: 1;
  min-width: 300px;
}

.rsm-about-history-heading {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 30px;
  position: relative;
}

.rsm-about-history-heading::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
}

.rsm-about-history-paragraph {
  color: #f8f0e3;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  position: relative;
  padding-left: 15px;
}

.rsm-about-history-paragraph::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #d4af37;
}

.rsm-about-history-image-column {
  flex: 1;
  min-width: 300px;
}

.carousel {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.rsm-about-history-image {
  border-radius: 10px;
  transition: transform 0.5s;
  height: 400px;
  object-fit: cover;
}

/* Mission/Vision Section Styling */
.rsm-about-mission-vision-section {
  background-color: rgba(7, 2, 22, 0.95);
  padding: 5rem 0;
  position: relative;
}

.rsm-about-mission-vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.rsm-about-mission-vision-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rsm-about-mission-vision-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.rsm-about-mission-column,
.rsm-about-vision-column {
  flex: 1;
  min-width: 300px;
}

.rsm-about-mission-card,
.rsm-about-vision-card {
  background: linear-gradient(145deg, rgba(26, 9, 51, 0.8), rgba(10, 2, 25, 0.9));
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rsm-about-mission-card:hover,
.rsm-about-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.rsm-about-mission-card-body,
.rsm-about-vision-card-body {
  padding: 30px;
  position: relative;
}

.rsm-about-mission-title,
.rsm-about-vision-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.rsm-about-mission-title::after,
.rsm-about-vision-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.rsm-about-mission-text,
.rsm-about-vision-text {
  color: #f8f0e3;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.rsm-about-mission-list,
.rsm-about-vision-list {
  padding-left: 20px;
  list-style-type: none;
}

.rsm-about-mission-item,
.rsm-about-vision-item {
  color: #f8f0e3;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}

.rsm-about-mission-item::before,
.rsm-about-vision-item::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 0.9rem;
}

/* Activities Section Styling */
.rsm-about-activities-section {
  background-color: rgba(10, 2, 25, 0.95) !important;
  padding: 5rem 0!important;
  position: relative!important;
}

.rsm-about-activities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent)!important;
}

.rsm-about-activities-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.rsm-about-activities-heading {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #d4af37!important;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.rsm-about-activities-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent) !important;
}

.rsm-about-activities-table-wrapper {
  background: linear-gradient(145deg, rgba(26, 9, 51, 0.6), rgba(10, 2, 25, 0.7)) !important;
  border-radius: 15px!important;
  padding: 20px!important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.rsm-about-activities-table {
  width: 100%!important;
  border-collapse: separate!important;
  border-spacing: 0!important;
}

.rsm-about-activities-thead {
  background-color: rgba(212, 175, 55, 0.1) !important;
}

.rsm-about-activities-header-cell {
  padding: 15px;
  text-align: left;
  font-family: 'Cinzel', serif;
  color: #d4af37 !important;
  font-size: 1.2rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3) !important;
}

.rsm-about-activities-row:hover {
  background-color: rgba(212, 175, 55, 0.1) !important;
}

.rsm-about-activities-time-cell,
.rsm-about-activities-name-cell {
  padding: 15px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
}

.rsm-about-activities-time-cell {
  font-weight: 500;
  color: #d4af37 !important;
  width: 30%;
}

.rsm-about-activities-weekly-activities-heading {
  text-align: center;
  padding: 20px 15px;
  font-family: 'Cinzel', serif;
  color: #d4af37 !important;
  background-color: rgba(212, 175, 55, 0.1) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.rsm-about-activities-note {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: rgba(248, 240, 227, 0.7);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .rsm-about-main-heading {
    font-size: 3rem;
  }

  .rsm-about-history-row,
  .rsm-about-mission-vision-row {
    flex-direction: column;
  }

  .rsm-about-history-image-column {
    order: -1;
  }

  .rsm-about-history-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .rsm-about-main-heading {
    font-size: 2.5rem;
  }

  .rsm-about-history-heading,
  .rsm-about-activities-heading {
    font-size: 2rem;
  }

  .rsm-about-mission-title,
  .rsm-about-vision-title {
    font-size: 1.8rem;
  }

  .rsm-about-activities-time-cell {
    width: 40%;
  }
}

/* Animation effects */
.rsm-about-mission-card,
.rsm-about-vision-card {
  position: relative;
  overflow: hidden;
}

.rsm-about-mission-card::after,
.rsm-about-vision-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shimmer 5s infinite linear;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


.rsm-about-activities-table-wrapper {
  background: linear-gradient(145deg, rgba(7, 2, 22, 0.95), rgba(10, 2, 25, 0.98)) !important;
  border-radius: 15px !important;
  padding: 25px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
}

.rsm-about-activities-table-wrapper::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: linear-gradient(to bottom right,
      rgba(212, 175, 55, 0) 0%,
      rgba(212, 175, 55, 0) 40%,
      rgba(212, 175, 55, 0.1) 50%,
      rgba(212, 175, 55, 0) 60%,
      rgba(212, 175, 55, 0) 100%) !important;
  transform: rotate(30deg) !important;
  animation: tableshimmer 7s infinite linear !important;
  pointer-events: none !important;
}

@keyframes tableshimmer {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.rsm-about-activities-heading {
  font-family: 'Cinzel', serif !important;
  font-size: 2.5rem !important;
  font-weight: 600 !important;
  color: #d4af37 !important;
  text-align: center !important;
  margin-bottom: 50px !important;
  position: relative !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
}

.rsm-about-activities-heading::before {
  content: '॥' !important;
  position: absolute !important;
  left: 20% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: rgba(212, 175, 55, 0.5) !important;
}

.rsm-about-activities-heading::after {
  content: '॥' !important;
  position: absolute !important;
  right: 20% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: rgba(212, 175, 55, 0.5) !important;
}

.rsm-about-activities-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.rsm-about-activities-thead {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2)) !important;
}

.rsm-about-activities-header-cell {
  padding: 18px 20px !important;
  text-align: left !important;
  font-family: 'Cinzel', serif !important;
  color: #d4af37 !important;
  font-size: 1.3rem !important;
  border-bottom: 2px solid rgba(212, 175, 55, 0.4) !important;
  letter-spacing: 1px !important;
}

.rsm-about-activities-row {
  transition: all 0.3s ease !important;
  border-left: 3px solid transparent !important;
}

.rsm-about-activities-row:hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05)) !important;
  border-left: 3px solid #d4af37 !important;
  transform: translateX(5px) !important;
}

.rsm-about-activities-time-cell,
.rsm-about-activities-name-cell {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.rsm-about-activities-time-cell {
  font-weight: 500 !important;
  color: #d4af37 !important;
  width: 40% !important;
  font-size: 1.1rem !important;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.3) !important;
}

.rsm-about-activities-name-cell {
  font-size: 1.1rem !important;
  color: #d4af37 !important;
  opacity: 0.8 !important;
}

.rsm-about-activities-section-heading {
  background: rgba(212, 175, 55, 0.05) !important;
}

.rsm-about-activities-weekly-activities-heading {
  text-align: center !important;
  padding: 20px 15px !important;
  font-family: 'Cinzel', serif !important;
  color: #d4af37 !important;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1)) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
  font-size: 1.3rem !important;
  letter-spacing: 1px !important;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.5) !important;
  position: relative;
}

.rsm-about-activities-weekly-activities-heading::before,
.rsm-about-activities-weekly-activities-heading::after {
  content: '❖' !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: rgba(212, 175, 55, 0.6) !important;
  font-size: 1rem !important;
}

.rsm-about-activities-weekly-activities-heading::before {
  left: 25% !important;
}

.rsm-about-activities-weekly-activities-heading::after {
  right: 25% !important;
}

.rsm-about-activities-note {
  text-align: center !important;
  margin-top: 15px !important;
  font-style: italic !important;
  color: rgba(212, 175, 55, 0.7) !important;
}








/* Remove Bootstrap's default table styles */
#rsm-about-activities-section .table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: rgba(10, 2, 25, 0.95) !important;
  border: none !important;
  box-shadow: 0 5px 15px rgba(30, 10, 60, 0.3);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Override table striped rows */
#rsm-about-activities-section .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(18, 8, 36, 0.8) !important;
  backdrop-filter: blur(5px);
}

/* Style the table header */
#rsm-about-activities-section .table thead th {
  background: linear-gradient(135deg, rgba(25, 10, 45, 1) 0%, rgba(35, 15, 65, 1) 100%) !important;
  color: rgba(150, 130, 180, 1) !important;
  text-align: center;
  font-size: 1.25em;
  padding: 15px 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid rgba(40, 20, 70, 1) !important;
  position: relative;
}

#rsm-about-activities-section .table thead th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(60, 30, 100, 0.8), transparent);
  box-shadow: 0 0 8px rgba(60, 30, 100, 0.6);
}

/* Style the table rows */
#rsm-about-activities-section .table tbody td {
  padding: 12px 10px;
  text-align: center;
  font-size: 1.1em;
  color: rgba(140, 120, 170, 1) !important;
  border-bottom: 1px solid rgba(40, 20, 70, 0.4) !important;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(25, 10, 45, 1) 0%, rgba(35, 15, 65, 1) 100%) !important;
}

/* Style the table rows with the proper background */
#rsm-about-activities-section .table tbody tr {
  border-bottom: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect for table rows */
#rsm-about-activities-section .table tbody tr:hover {
  background-color: rgba(22, 10, 40, 0.9) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(5, 2, 10, 0.4);
}

/* Style the note below the table */
#rsm-about-activities-note {
  font-size: 0.95em;
  text-align: center;
  margin-top: 20px;
  color: rgba(140, 120, 170, 1);
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

#rsm-about-activities-note::before,
#rsm-about-activities-note::after {
  content: '✧';
  color: rgba(100, 80, 140, 1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  text-shadow: 0 0 5px rgba(60, 30, 100, 0.5);
}

#rsm-about-activities-note::before {
  left: 0;
}

#rsm-about-activities-note::after {
  right: 0;
}

/* Style for the section heading */
#rsm-about-activities-weekly-activities-heading {
  text-align: center;
  font-size: 1.4em;
  background: linear-gradient(135deg, rgba(25, 10, 45, 1) 0%, rgba(35, 15, 65, 1) 100%) !important;
  color: rgba(150, 130, 180, 1) !important;
  padding: 12px 15px;
  border-radius: 6px 6px 0 0;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(40, 20, 70, 0.4);
  box-shadow: 0 0 15px rgba(60, 30, 100, 0.2);
}

#rsm-about-activities-weekly-activities-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(60, 30, 100, 0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
      left: -100%;
  }
  20% {
      left: 100%;
  }
  100% {
      left: 100%;
  }
}

/* Add subtle glow effect to the whole table */
#rsm-about-activities-section .table {
  position: relative;
}

#rsm-about-activities-section .table::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 8px;
  box-shadow: inset 0 0 20px rgba(60, 30, 100, 0.15), 0 0 30px rgba(60, 30, 100, 0.1);
  z-index: 1;
}

/* Add subtle pattern effect */
#rsm-about-activities-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(60, 30, 100, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.2;
  z-index: 0;
}



/* Announcements Page Divine Mystical Styling */

/* Hero Section */
#rsm-announcements-hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), 
              url('/static/img/temple-bg.jpg') center/cover no-repeat fixed;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

#rsm-announcements-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, transparent 20%, rgba(10, 5, 20, 0.6) 100%);
  z-index: 1;
}

#rsm-announcements-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 1;
}

#rsm-announcements-hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

#rsm-announcements-hero-heading {
  color: #d4af37;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  margin-bottom: 1.5rem;
  font-family: 'Sanskrit Text', serif;
  position: relative;
  display: inline-block;
}

#rsm-announcements-hero-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

#rsm-announcements-hero-text {
  color: #f1f1f1;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Common Section Styling */
#rsm-announcements-upcoming-events-section,
#rsm-announcements-recent-announcements-section,
#rsm-announcements-festival-calendar-section {
  background-color: #10061a;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative divine elements for sections */
#rsm-announcements-upcoming-events-section::before,
#rsm-announcements-recent-announcements-section::before,
#rsm-announcements-festival-calendar-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
}

/* Section Containers */
#rsm-announcements-upcoming-events-container,
#rsm-announcements-recent-announcements-container,
#rsm-announcements-festival-calendar-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* Section Headings */
#rsm-announcements-upcoming-events-heading,
#rsm-announcements-recent-announcements-heading,
#rsm-announcements-festival-calendar-heading {
  color: #d4af37;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  font-family: 'Sanskrit Text', serif;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

#rsm-announcements-upcoming-events-heading::after,
#rsm-announcements-recent-announcements-heading::after,
#rsm-announcements-festival-calendar-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Event Cards Styling */
#rsm-announcements-upcoming-events-row-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

#rsm-announcements-upcoming-events-column-1 {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

#rsm-announcements-upcoming-events-card-1 {
  background: linear-gradient(145deg, rgba(30, 15, 45, 0.95), rgba(10, 5, 20, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

#rsm-announcements-upcoming-events-card-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
}

#rsm-announcements-upcoming-events-card-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
  z-index: 2;
}

#rsm-announcements-upcoming-events-card-header-1 {
  background: rgba(10, 5, 20, 0.8);
  padding: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

#rsm-announcements-upcoming-events-card-title-1 {
  color: #d4af37;
  font-size: 1.5rem;
  margin: 0;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

#rsm-announcements-upcoming-events-card-body-1 {
  padding: 1.5rem;
  color: #e0e0e0;
}

#rsm-announcements-upcoming-events-card-time-1 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #a990cc;
}

#rsm-announcements-upcoming-events-card-date-1 {
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  padding-left: 25px;
}

#rsm-announcements-upcoming-events-card-date-1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a990cc'%3E%3Cpath d='M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12.5,7V12.25L17,14.92L16.25,16.15L11,13V7H12.5Z' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

#rsm-announcements-upcoming-events-card-text-1 {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

#rsm-announcements-upcoming-events-card-list-1 {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1.2rem;
}

#rsm-announcements-upcoming-events-card-list-1 li {
  padding: 0.5rem 0 0.5rem 25px;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

#rsm-announcements-upcoming-events-card-list-1 li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

#rsm-announcements-upcoming-events-card-note-1 {
  font-size: 0.9rem;
  color: #a990cc;
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.2);
}

/* Recent Announcement List */
#rsm-announcements-recent-announcements-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Festival Calendar Styling */
#rsm-announcements-festival-calendar-table-container {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.1);
  position: relative;
}

#rsm-announcements-festival-calendar-table-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  z-index: 2;
}

#rsm-announcements-festival-calendar-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(20, 10, 30, 0.7);
}

#rsm-announcements-festival-calendar-table-header {
  background: linear-gradient(145deg, rgba(30, 15, 45, 0.95), rgba(10, 5, 20, 0.95));
}

#rsm-announcements-festival-calendar-table th {
  color: #d4af37;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

#rsm-announcements-festival-calendar-table td {
  padding: 0.9rem 1rem;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: background-color 0.2s ease;
}

#rsm-announcements-festival-calendar-table tr:hover td {
  background-color: rgba(212, 175, 55, 0.05);
}

#rsm-announcements-festival-calendar-table-cell-date-1,
#rsm-announcements-festival-calendar-table-cell-date-2,
#rsm-announcements-festival-calendar-table-cell-date-3,
#rsm-announcements-festival-calendar-table-cell-date-4,
#rsm-announcements-festival-calendar-table-cell-date-5,
#rsm-announcements-festival-calendar-table-cell-date-6,
#rsm-announcements-festival-calendar-table-cell-date-7,
#rsm-announcements-festival-calendar-table-cell-date-8,
#rsm-announcements-festival-calendar-table-cell-date-9 {
  color: #a990cc;
  font-weight: 500;
}

#rsm-announcements-festival-calendar-table-cell-events-1,
#rsm-announcements-festival-calendar-table-cell-events-2,
#rsm-announcements-festival-calendar-table-cell-events-3,
#rsm-announcements-festival-calendar-table-cell-events-4,
#rsm-announcements-festival-calendar-table-cell-events-5,
#rsm-announcements-festival-calendar-table-cell-events-6,
#rsm-announcements-festival-calendar-table-cell-events-7,
#rsm-announcements-festival-calendar-table-cell-events-8,
#rsm-announcements-festival-calendar-table-cell-events-9 {
  color: #d4af37;
  font-weight: 500;
}

/* Modal Styling */
#rsm-announcements-event-modal-1 .modal-content {
  background: linear-gradient(145deg, rgba(25, 12, 40, 0.97), rgba(10, 5, 20, 0.97));
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
}

#rsm-announcements-event-modal-header-1 {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.5rem;
}

#rsm-announcements-event-modal-title-1 {
  color: #d4af37;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

#rsm-announcements-event-modal-close-1 {
  color: #d4af37;
  text-shadow: none;
  opacity: 0.8;
}

#rsm-announcements-event-modal-body-1 {
  padding: 1.5rem;
  color: #e0e0e0;
}

#rsm-announcements-event-modal-date-time-1 {
  color: #a990cc;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

#rsm-announcements-event-modal-description-1 {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

#rsm-announcements-event-modal-schedule-heading-1,
#rsm-announcements-event-modal-arrangements-heading-1,
#rsm-announcements-event-modal-registration-heading-1 {
  color: #d4af37;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

#rsm-announcements-event-modal-schedule-heading-1::after,
#rsm-announcements-event-modal-arrangements-heading-1::after,
#rsm-announcements-event-modal-registration-heading-1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #d4af37, transparent);
}

#rsm-announcements-event-modal-schedule-table-1 {
  margin-bottom: 1.5rem;
  background: rgba(20, 10, 30, 0.5);
}

#rsm-announcements-event-modal-schedule-table-header-1 {
  background: rgba(10, 5, 20, 0.8);
}

#rsm-announcements-event-modal-schedule-table-1 th {
  color: #d4af37;
  padding: 0.8rem;
  font-weight: 600;
  border-color: rgba(212, 175, 55, 0.2);
}

#rsm-announcements-event-modal-schedule-table-1 td {
  padding: 0.8rem;
  border-color: rgba(212, 175, 55, 0.1);
}

#rsm-announcements-event-modal-schedule-table-cell-day-1-1,
#rsm-announcements-event-modal-schedule-table-cell-day-2-1,
#rsm-announcements-event-modal-schedule-table-cell-day-3-1 {
  color: #a990cc;
  font-weight: 500;
}

#rsm-announcements-event-modal-schedule-table-cell-time-1-1,
#rsm-announcements-event-modal-schedule-table-cell-time-1-2,
#rsm-announcements-event-modal-schedule-table-cell-time-1-3,
#rsm-announcements-event-modal-schedule-table-cell-time-1-4,
#rsm-announcements-event-modal-schedule-table-cell-time-1-5,
#rsm-announcements-event-modal-schedule-table-cell-time-2-1,
#rsm-announcements-event-modal-schedule-table-cell-time-2-2,
#rsm-announcements-event-modal-schedule-table-cell-time-2-3,
#rsm-announcements-event-modal-schedule-table-cell-time-2-4,
#rsm-announcements-event-modal-schedule-table-cell-time-2-5,
#rsm-announcements-event-modal-schedule-table-cell-time-3-1,
#rsm-announcements-event-modal-schedule-table-cell-time-3-2,
#rsm-announcements-event-modal-schedule-table-cell-time-3-3,
#rsm-announcements-event-modal-schedule-table-cell-time-3-4,
#rsm-announcements-event-modal-schedule-table-cell-time-3-5 {
  color: #d4af37;
}

#rsm-announcements-event-modal-arrangements-list-1 {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

#rsm-announcements-event-modal-arrangements-list-1 li {
  padding: 0.5rem 0 0.5rem 25px;
  position: relative;
}

#rsm-announcements-event-modal-arrangements-list-1 li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

#rsm-announcements-event-modal-registration-link-1 {
  background: linear-gradient(145deg, #d4af37, #b38728);
  border: none;
  color: #10061a;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(212, 175, 55, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

#rsm-announcements-event-modal-registration-link-1:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
  background: linear-gradient(145deg, #e5c04e, #d4af37);
}

#rsm-announcements-event-modal-footer-1 {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1rem 1.5rem;
}

#rsm-announcements-event-modal-close-button-1 {
  background: rgba(30, 15, 45, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  transition: all 0.3s ease;
}

#rsm-announcements-event-modal-close-button-1:hover {
  background: rgba(40, 20, 60, 0.8);
  border-color: rgba(212, 175, 55, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #rsm-announcements-hero-heading {
    font-size: 2.5rem;
  }
  
  #rsm-announcements-upcoming-events-heading,
  #rsm-announcements-recent-announcements-heading,
  #rsm-announcements-festival-calendar-heading {
    font-size: 1.8rem;
  }
  
  #rsm-announcements-festival-calendar-table th,
  #rsm-announcements-festival-calendar-table td {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
}

/* Divine animation effects */
@keyframes divineGlow {
  0% {
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  }
  100% {
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
  }
}

@keyframes divinePulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.5;
  }
}

/* Apply subtle animations to divine elements */
#rsm-announcements-hero-heading,
#rsm-announcements-upcoming-events-card-title-1,
#rsm-announcements-festival-calendar-heading,
#rsm-announcements-recent-announcements-heading,
#rsm-announcements-upcoming-events-heading {
  animation: divineGlow 3s infinite ease-in-out;
}

/* Subtle background pattern animation */
#rsm-announcements-hero-section::after,
#rsm-announcements-upcoming-events-section::after,
#rsm-announcements-recent-announcements-section::after,
#rsm-announcements-festival-calendar-section::after {
  animation: divinePulse 8s infinite ease-in-out;
}

/* Divine Mystical Temple Seva Booking CSS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Spectral:wght@300;400;500;600&display=swap');

/* Main Container */
#rsm-booking-container {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #0a0514 0%, #13091d 50%, #150a1f 100%);
    color: #e2d7f4;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

#rsm-booking-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

/* Header Section */
#rsm-booking-header-section {
    text-align: center;
    position: relative;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 1;
}

#rsm-booking-header-heading {
    font-family: 'Spectral', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.7), 
                 0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

#rsm-booking-header-heading::before,
#rsm-booking-header-heading::after {
    content: '✧';
    color: #d4af37;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

#rsm-booking-header-heading::before {
    left: -3rem;
}

#rsm-booking-header-heading::after {
    right: -3rem;
}

#rsm-booking-header-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem auto;
    max-width: 800px;
    position: relative;
    padding: 2rem;
    background: rgba(10, 5, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

#rsm-booking-header-text b {
    color: #d4af37;
    font-weight: 500;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

#rsm-booking-header-text i {
    color: #a790d5;
    font-style: italic;
}

#rsm-index-donation-column-2 {
    margin: 2rem auto;
    position: relative;
    max-width: 200px;
}

#rsm-index-donation-image {
    width: 100%;
    height: 100%;
    
    border: 3px solid #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
                0 0 40px rgba(212, 175, 55, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#rsm-index-donation-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.7),
                0 0 60px rgba(212, 175, 55, 0.5);
}

/* Sevas Section */
#rsm-booking-sevas-section {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

#rsm-booking-sevas-card {
    background: rgba(19, 9, 29, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

#rsm-booking-sevas-card-header {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

#rsm-booking-sevas-card-title {
    color: #d4af37;
    font-family: 'Spectral', serif;
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

#rsm-booking-sevas-card-body {
    padding: 2rem;
}

.rsm-booking-seva-category {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.rsm-booking-category-header {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.15), transparent);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.rsm-booking-category-header:hover {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.3);
}

.rsm-booking-category-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #e2d7f4;
    margin: 0;
}

.rsm-booking-category-toggle {
    font-size: 1.8rem;
    color: #d4af37;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.rsm-booking-category-content {
    display: none;
    padding: 1rem 0 0 1.5rem;
}

.rsm-booking-seva-item {
    margin-bottom: 1rem;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding-left: 1rem;
}

.rsm-booking-seva-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.rsm-booking-seva-header:hover {
    background: rgba(212, 175, 55, 0.1);
}

.rsm-booking-seva-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: #d4af37;
}

.rsm-booking-seva-toggle {
    font-size: 1.4rem;
    color: #a790d5;
    transition: transform 0.3s ease;
}

.rsm-booking-seva-details {
    display: none;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    background: rgba(10, 5, 20, 0.3);
    border-radius: 4px;
    border-left: 2px solid rgba(212, 175, 55, 0.4);
}

.rsm-booking-seva-description {
    font-size: 1rem;
    color: #a790d5;
    margin-bottom: 0.5rem;
}

.rsm-booking-seva-contribution {
    font-size: 1rem;
    color: #d4af37;
    font-weight: 500;
}

#rsm-booking-sevas-info {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    border-left: 3px solid #d4af37;
}

#rsm-booking-sevas-info-text {
    margin: 0;
    color: #a790d5;
    font-size: 0.9rem;
    text-align: center;
}

/* Booking Form Section */
#rsm-booking-form-section {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

#rsm-booking-form-card {
    background: rgba(19, 9, 29, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

#rsm-booking-form-card-header {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

#rsm-booking-form-card-title {
    color: #d4af37;
    font-family: 'Spectral', serif;
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

#rsm-booking-form-card-body {
    padding: 2rem;
}

#rsm-booking-form label {
    display: block;
    font-size: 1rem;
    color: #a790d5;
    margin-bottom: 0.5rem;
}

#rsm-booking-form input[type="text"],
#rsm-booking-form input[type="email"],
#rsm-booking-form input[type="tel"],
#rsm-booking-form input[type="date"],
#rsm-booking-form select,
#rsm-booking-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    background: rgba(10, 5, 20, 0.6);
    color: #e2d7f4;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#rsm-booking-form input[type="text"]:focus,
#rsm-booking-form input[type="email"]:focus,
#rsm-booking-form input[type="tel"]:focus,
#rsm-booking-form input[type="date"]:focus,
#rsm-booking-form select:focus,
#rsm-booking-form textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
    outline: none;
}

#rsm-booking-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

#rsm-booking-form-row-1,
#rsm-booking-form-row-2,
#rsm-booking-form-row-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

#rsm-booking-form-column-1,
#rsm-booking-form-column-2 {
    flex: 1;
    min-width: 250px;
}

#rsm-booking-form-family-container {
    margin-top: 0.5rem;
}

#rsm-booking-form-family-row-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

#rsm-booking-form-family-column-1,
#rsm-booking-form-family-column-2 {
    flex: 1;
    min-width: 200px;
}

#rsm-booking-form-family-column-3 {
    width: auto;
}

.rsm-booking-form-family-add {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.rsm-booking-form-family-add:hover {
    background: rgba(212, 175, 55, 0.4);
}

#rsm-booking-form-row-7 {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

#rsm-booking-form-terms {
    margin-right: 0.5rem;
    accent-color: #d4af37;
}

#rsm-booking-form-label-terms {
    font-size: 0.9rem;
    margin-bottom: 0;
}

#rsm-booking-form-row-8 {
    margin: 1.5rem 0;
}

#rsm-booking-form-payment-method {
    font-size: 1.1rem;
    color: #a790d5;
    margin-bottom: 1rem;
}

#rsm-booking-form-payment-online,
#rsm-booking-form-payment-math {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

#rsm-booking-form-pay-online,
#rsm-booking-form-pay-math {
    margin-right: 0.5rem;
    accent-color: #d4af37;
}

#rsm-booking-form-qrcode {
    margin: 1rem 0;
    text-align: center;
}

#rsm-booking-form-qrcode img {
    border: 2px solid #d4af37;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

#rsm-booking-form-qrcode p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #a790d5;
}

#rsm-booking-form-submit {
    margin-top: 2rem;
    text-align: center;
}

#rsm-booking-form-submit-button {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.7), rgba(212, 175, 55, 0.5));
    color: #13091d;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

#rsm-booking-form-submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

#rsm-booking-form-submit-button:hover {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.7));
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

#rsm-booking-form-submit-button:hover::before {
    left: 100%;
}

#rsm-booking-info-card {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(10, 5, 20, 0.6);
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

#rsm-booking-info-title {
    color: #d4af37;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
}

#rsm-booking-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#rsm-booking-info-list li {
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: #a790d5;
    position: relative;
    padding-left: 1.5rem;
}

#rsm-booking-info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#rsm-booking-info-list li::before {
    content: '✧';
    color: #d4af37;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Toggle functionality */
.rsm-booking-category-header.active .rsm-booking-category-toggle {
    transform: rotate(45deg);
}

.rsm-booking-seva-header.active .rsm-booking-seva-toggle {
    transform: rotate(45deg);
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    #rsm-booking-header-heading {
        font-size: 2.5rem;
    }

    #rsm-booking-header-heading::before,
    #rsm-booking-header-heading::after {
        display: none;
    }

    #rsm-booking-header-text {
        font-size: 1rem;
        padding: 1.5rem;
    }

    #rsm-booking-sevas-card-body,
    #rsm-booking-form-card-body {
        padding: 1.5rem;
    }

    #rsm-booking-form-row-1,
    #rsm-booking-form-row-2,
    #rsm-booking-form-row-3,
    #rsm-booking-form-family-row-1 {
        flex-direction: column;
        gap: 0;
    }
}

/* JavaScript functionality support */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
}

.glow-effect {
    animation: glow 2s infinite ease-in-out;
}


/* Divine Photo Gallery - Mystical Theme with Golden Accents */

#rsm-announcements-photo-gallery-section {
  background: linear-gradient(135deg, #0a0a14 0%, #141428 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Cosmic background effect */
#rsm-announcements-photo-gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 60%);
  z-index: 1;
}

#rsm-announcements-photo-gallery-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

#rsm-announcements-photo-gallery-heading {
  font-family: 'Cinzel', serif;
  color: #D4AF37;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  letter-spacing: 3px;
  font-weight: 400;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  position: relative;
  padding-top: 20px;
}

/* Divine ornament for the heading */
#rsm-announcements-photo-gallery-heading::before,
#rsm-announcements-photo-gallery-heading::after {
  content: "✦";
  color: #D4AF37;
  font-size: 1.5rem;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#rsm-announcements-photo-gallery-heading::before {
  left: calc(50% - 150px);
}

#rsm-announcements-photo-gallery-heading::after {
  right: calc(50% - 150px);
}

#rsm-announcements-photo-gallery-row-1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

[id^="rsm-announcements-photo-gallery-column"] {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  background: #0a0a14;
}

[id^="rsm-announcements-photo-gallery-column"]:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* Golden border glow effect on hover */
[id^="rsm-announcements-photo-gallery-column"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.5s ease;
  pointer-events: none;
}

[id^="rsm-announcements-photo-gallery-column"]:hover::after {
  border-color: #D4AF37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

[id^="rsm-announcements-photo-gallery-img"] {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 1.2s ease, filter 0.8s ease;
  display: block;
}

[id^="rsm-announcements-photo-gallery-column"]:hover [id^="rsm-announcements-photo-gallery-img"] {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

/* Event title overlay */
[id^="rsm-announcements-photo-gallery-link"] {
  position: relative;
  display: block;
}

[id^="rsm-announcements-photo-gallery-link"]::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: #D4AF37;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  text-align: center;
}

[id^="rsm-announcements-photo-gallery-link"]:hover::after {
  opacity: 1;
  transform: translateY(0);
}

#rsm-announcements-photo-gallery-footer {
  text-align: center;
  margin-top: 2rem;
}

#rsm-announcements-photo-gallery-link-all {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
  color: #D4AF37;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#rsm-announcements-photo-gallery-link-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: all 0.8s ease;
  z-index: -1;
}

#rsm-announcements-photo-gallery-link-all:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  border-color: rgba(212, 175, 55, 0.6);
  color: #FFFFFF;
}

#rsm-announcements-photo-gallery-link-all:hover::before {
  left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #rsm-announcements-photo-gallery-heading {
    font-size: 2.2rem;
  }
  
  #rsm-announcements-photo-gallery-heading::before {
    left: calc(50% - 100px);
  }
  
  #rsm-announcements-photo-gallery-heading::after {
    right: calc(50% - 100px);
  }
  
  #rsm-announcements-photo-gallery-row-1 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  #rsm-announcements-photo-gallery-heading {
    font-size: 1.8rem;
  }
  
  #rsm-announcements-photo-gallery-heading::before,
  #rsm-announcements-photo-gallery-heading::after {
    display: none;
  }
  
  #rsm-announcements-photo-gallery-row-1 {
    grid-template-columns: 1fr;
  }
}