html, body {
  max-width: 100vw;
  overflow-x: hidden;

}

body {
  font-family: 'Arial', sans-serif;
  background: url('assets/img/background.webp') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  backdrop-filter: blur(5px);
}

html {
  scroll-behavior: smooth;
}

.container {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  margin: 20px;
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

h1 {
  margin-top: 20px;
  font-size: 2.5em;
  color: #6A0DAD;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-family: 'Gotham', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em; 
}

.date-range {
  position: relative;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #fff;

  
  background-color: #6A0DAD;
  background-image: repeating-radial-gradient(circle,
                    rgba(255, 255, 255, 0.1) 0px,
                    rgba(255, 255, 255, 0.1) 2px,
                    transparent 4px,
                    transparent 20px);

  
  background-size: 200px 200px;  
  background-repeat: repeat;

  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: 1rem;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(106, 13, 173, 0.5);
  letter-spacing: 0.6px;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;

  
  animation: rippleScroll 30s linear infinite;
}

@keyframes rippleScroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 400px 400px; 
  }
}

.date-range::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(106, 13, 173, 0.35); 
  border-radius: 14px;
  pointer-events: none;
}

.date-range .from,
.date-range .to {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1; 
}

.date-range .from-date,
.date-range .to-date {
  color: #ffe96e; 
  font-weight: 700;
  font-size: 1.2em;
  text-align: center;
}

.date-range .from-day,
.date-range .to-day {
  color: #fff6d1; 
  font-weight: 500;
  font-size: 0.95em;
  margin: 0.2rem 0;
}

.date-range .from-time,
.date-range .to-time {
  color: #FFD700;
  font-weight: 500;
  font-size: 1em;
}

.date-range .separator {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4em;
  color: #ffffffdd;
  padding: 0 0.5rem;
  z-index: 1;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2em; 
  }
  
  h1 img.logo {
    height: 2em; 
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2em;
  }
  
  h1 img.logo {
    height: 3em;
  }
}

h3 {
  margin-top: 20px;
  font-size: 1.5em;
  color: #3b475e;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-family: 'Gotham';
}

h5{
  margin-top: 20px;
  font-size: 1.4em; 
  color: darkblue;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-family: 'Cambria';
  font-weight: bold;
}

h6{
  font-weight: bolder;
  font-size: 1em;
  color: #6A0DAD;
}

.video-container {
  position: relative;
  padding-top: 56.25%; 
  height: 0;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 15px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.live-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  width: fit-content;
  animation: blink1 1s infinite;
  background-color: rgb(237, 40, 40);
  cursor: pointer; 
}

.live-heading p {
  margin: 0;
}

.date-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  border: 1px solid #6A0DAD;
  border-radius: 30px;
  background-color: #FFD700;
  color: darkblue;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none; 
  font-family: 'Trebuchet MS';
}

.date-button:hover {
  background-color: #f0f8ff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.date-button:focus, .date-button:active {
  outline: none; 
  text-decoration: none;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.date-button1 {
  display: block;          
  width: fit-content;      
  margin: 8px auto;   /* 🔥 Reduced from 20px to 8px */
  padding: 8px 22px;  /* 🔥 Slightly reduced padding for a neater look */
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #FF007F, #8A2BE2, #FF69B4, #8A2BE2);
  background-size: 200% 200%;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Trebuchet MS';
  animation: gradient-animation 3s ease infinite;
  font-size: large;
  font-weight: bolder;
  font-size: 1.5em;
}


.date-button1:hover {
  color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.date-button1:focus, .date-button1:active {
  outline: none; 
  text-decoration: none;
  color: white;
}

.live-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  margin-top: 10px;
  border: 2px solid gold; 
  border-radius: 50px;
  background-color: #ffffff; 
  color: #6A0DAD; 
  box-shadow: 0 8px 20px rgba(106, 13, 173, 0.15); 
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Roboto', sans-serif; 
  font-weight: bolder;
  font-size: 1rem;
}

.live-video:hover {
  color: #6A0DAD;
  text-decoration: none;  
  transform: scale(1.05);
  font-weight: bolder;
}

.live-video:focus, .live-video:active {
  outline: none; 
  text-decoration: none; 
}

.date-intro-divider {
  height: 2px; 
  width: 100%;
  background-image: linear-gradient(to right, #00246B, #0052A5); 
  margin: 20px 0; 
}

.date-intro-divider1 {
  height: 2px;
  width: 100%;
  background-color: white;
  margin: 20px 0; 
}

.intro-message {
  background: #672AF7;
  background: linear-gradient(135deg, #672AF7, #8541AD);
  color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: fadeInUp 1s ease-out; 
  font-weight: bold;
}

.intro-heading {
  margin-bottom: 5px;
}

.intro-heading p {
  font-size: 2em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.intro-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-top: 10px;
  font-family: 'Verdana';
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#countdown {
  text-align: center;
  margin-top: 20px;
}

#countdown-timer {
  font-size: 1.5em;
}

#countdown-complete {
  display: none; 
  margin-top: 20px;
}

#countdown-message {
  font-size: 1.2em;
  color: #333;
}

.date-picker-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.date-picker {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  padding: 10px;
  max-width: 100%;
}

.date-picker::-webkit-scrollbar {
  display: none;
}

.date-button {
  flex: 0 0 auto; 
  
}

.scroll-btn {
  background-color: #6A0DAD;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.scroll-btn:hover,
.scroll-btn:focus {
  background-color: #4b0780;
  outline: none;
  border: none;
}

.scroll-btn.left {
  margin-right: 5px;
}

.scroll-btn.right {
  margin-left: 5px;
}

.date-button {
  padding: 10px 20px;
  margin: 5px;
  border: 1px solid darkblue;
  border-radius: 30px;
  background-color: #FFD700;
  color: darkblue;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Trebuchet MS';
}

.date-button:hover {
  background-color: #f0f8ff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.date-button.active {
  background-color: #6A0DAD;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

.date-button:focus, .date-button:active {
  outline: none; 
}

.schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  position: relative;
}

.time-slot {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 15px;
  transition: background-color 0.3s ease;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Outfit', 'Segoe UI', sans-serif;
}

.time-slot.active {
  background-color: orange;
  animation: blink 1s infinite;
  will-change: background-color;
}

@keyframes blink {
  50% {
    background-color: yellow;
  }
}

.time-slot > div:first-child {
  color:#6A0DAD;
  margin-bottom: 5px; 
}

.time-slot > div:nth-child(2) {
  font-size: 1.1em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .schedule {
    grid-template-columns: 1fr;
  }

  .time-slot {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
}

.intro-divider {
  height: 5px;
  background: linear-gradient(to right, #00246B, #ffffff, #00246B);
}

.audio-player {
  text-align: center;
  margin-top: 20px;
}

.audio-control {
  padding: 10px 20px;
  margin: 5px;
  border: 1px solid #6A0DAD;
  border-radius: 30px;
  background-color: #FFD700;
  color: #6A0DAD;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Trebuchet MS';
}

.audio-control:hover {
  background-color: #f0f8ff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.audio-control.active {
  background-color: #6A0DAD;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

#audio-player {
  display: none; 
}

.quote-popup {
  display: none;
  position: absolute;
  bottom: calc(40%); 
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 20px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
  z-index: 1000;
}

@media (max-width: 768px) {
  .quote-popup {
    bottom: 30%; 
  }
}

@media (max-width: 480px) {
  .quote-popup {
    bottom: 25%; 
  }
}

.quote-popup p {
  font-size: 1.2em;
  color: #6A0DAD;
  font-family: 'Gotham';
}

#quote-popup {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#quote-popup p {
  font-size: 1.2em;
  color: white;
  font-family: 'Gotham';
  padding: 10px;
  border-radius: 10px; 
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(2px); 
}

#close-quote-popup {
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid #6A0DAD;
  border-radius: 30px;
  background-color: #FFD700;
  color: #6A0DAD;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#close-quote-popup:hover {
  background-color: #f0f8ff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.time-slot.ended {
  background-color: #ccc;
}

/* ✅ Wrapper to center the button neatly */
.center-button-container {
  display: flex;
  justify-content: center;
  margin: 20px 0; /* smaller spacing above and below */
}

.button-pastLive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #1e40af); /* Blue gradient */
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.button-pastLive i {
  font-size: 18px;
}

.button-pastLive:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #60a5fa, #1e3a8a);
}

.button-pastLive:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* 📱 Mobile adjustments */
@media (max-width: 600px) {
  .button-pastLive {
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
  }
}

.parent-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; 
}

#ask-sai-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  margin: 5px;
  border: 1px solid #6A0DAD;
  border-radius: 30px;
  background-color: #FFD700;
  color: #6A0DAD;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-family: 'Trebuchet MS';
  position: relative;
  overflow: hidden;
}

#ask-sai-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 13px; 
  transform: translateY(-50%);
  width: 25px;
  height: 35px;
  background-image: url('assets/img/swami.gif');
  background-size: contain;
  background-repeat: no-repeat;
}

#ask-sai-button span {
  padding-left: 10px; 
  white-space: nowrap;
}

#ask-sai-button:hover {
  background-color: #f0f8ff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.countdown-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
}

#countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#countdown-text {
  font-size: 1.2rem;
  color: #6A0DAD;
  margin-bottom: 10px;
  font-family: 'Gotham';
  font-weight: bold;
}

#countdown-timer {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  overflow-x: auto !important;
  font-size: 1.2rem;
  color: #6A0DAD;
  font-weight: bold;
}

#countdown-timer span {
  display: inline-block;
  min-width: 50px;
  background: #FFD700;
  border-radius: 5px;
  padding: 5px 8px;
  font-weight: bold;
  font-size: 22px;
  vertical-align: middle;
}

#countdown-timer span::after {
  content: attr(id);
  text-transform: capitalize;
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #6A0DAD;
  margin-top: 5px;
}

@media (min-width: 600px) {
  #countdown-timer {
    gap: 20px !important;
  }

  #countdown-timer span {
    min-width: 70px;
    padding: 10px 14px;
    font-size: 30px;
  }

  #countdown-timer span::after {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  #countdown-timer span {
    min-width: 80px;
    padding: 12px 16px;
    font-size: 36px;
  }

  #countdown-timer span::after {
    font-size: 16px;
  }
}

#countdown-complete {
  display: none;
  font-size: 1.2rem;
  color: #28a745;
  font-weight: bold;
}

#countdown-message {
  margin-top: 20px;
  color: #28a745;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 29px;
}

h4 {
  margin-top: 20px;
  font-size: 1.3em; 
  color: rgb(255, 0, 221);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-family:'Cambria';
  font-weight: bold;
}

.bottom-photo {
  margin-top: 40px;
  text-align: center;
}

.bottom-photo img {
  max-width: 100%;
  height: auto; 
  border-radius: 15px; 
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); 
  transition: box-shadow 0.3s ease-in-out;
}

img {
  pointer-events: none;
}

@font-face {
  font-family: AlFresco;
  src: url(AlFresco.ttf);
}

.custom-h4 {
  font-size: 45px;
  color: darkblue;
  font-family: "AlFresco";
}

@media (max-width: 768px) {
  .custom-h4 {
    font-size: 35px; 
  }
}

@media (max-width: 480px) {
  .custom-h4 {
    font-size: 28px; 
  }
}

.header {
  text-align: center;
  margin: 0;
  padding: 0;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 10px; 
}

.heading-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.heading-text {
  padding-top: 0.5%;
  font-size: 3rem;
  font-weight: 800;
  color: #6A0DAD;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.heading-text::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; 
  margin: 10px auto 0;
  border-radius: 2px;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .heading-wrapper {
    flex-direction: column;
  }

  .logo {
    margin-bottom: 10px;
  }
}

.logo {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 120px;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.text-center {
  text-align: center;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}

.logo-100 {
  display: block;
  max-width: 250px;
  width: 100%;
}

.promo-announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 20px 0;
  background-color: #4b0082;
  border: 2px solid #FFD700;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  font-family: 'Trebuchet MS', sans-serif;
}

.promo-announcement p {
  font-size: 1.2em;
  color: #FFD700;
  text-align: center;
  margin: 0;
  padding: 0;
}

.promo-announcement i {
  margin-right: 10px;
  color: #FFD700;
  font-size: 1.2em;
}

.promo-announcement1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 20px 0;
  background-color: darkblue;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
  font-family: 'Trebuchet MS', sans-serif;
}

.promo-announcement1 p {
  font-size: 1.2em;
  color: gold;
  text-align: center;
  margin: 0;
  padding: 0;
}

.promo-announcement1 i {
  margin-right: 10px;
  color: #FFFFFF;
  font-size: 1.2em;
}

.homam-announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  margin: 20px 0;
  background: linear-gradient(135deg, #8B0000, #FF4500); 
  border: 2px solid #FFD700; 
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.6);
  font-family: 'Trebuchet MS', sans-serif;
}

.homam-announcement p {
  font-size: 1.2em;
  color: #FFF5CC; 
  text-align: center;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.homam-announcement i {
  margin-right: 10px;
  color: #FFD700; 
  font-size: 1.3em;
}

.independence-day-message {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 20px auto;
  width: 80%;
  max-width: 400px;
  border: 2px solid #FFD700;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  font-family: 'Trebuchet MS', sans-serif;
  background: linear-gradient(45deg, #FF9933, #FFFFFF, #138808);
  font-weight: bolder;
}

.independence-day-message p {
  font-size: 1.2em;
  color: #000080;
  text-align: center;
  margin: 0;
  padding: 0;
}

.schedule-table {
  width: 100%;
  border-collapse: separate; 
  border-spacing: 0;
  border: 1px solid #6A0DAD;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-size: 1rem;
}

.schedule-table thead tr {
  background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
  color: gold;
  text-align: center;
}

.schedule-table th,
.schedule-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #eee; 
  border-right: 1px solid #ddd;  
  text-align: center;
  color: purple;
  transition: background-color 0.3s ease;
}

.schedule-table th:last-child,
.schedule-table td:last-child {
  border-right: none; 
}

.schedule-table th {
  background-color: gold;
  color: #6A0DAD;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.schedule-table tbody tr {
  background-color: #fff;
}

.schedule-table tbody tr:nth-child(even) {
  background-color: #faf7ff;
}

.schedule-table tbody tr:hover {
  background-color: #f3e8ff;
}

.table-container {
  margin: 20px 0;
  text-align: center;
  padding: 0 12px;
  max-width: 100%;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .schedule-table th,
  .schedule-table td {
    font-size: 0.9em;
    padding: 10px;
  }

  h2 {
    font-size: 1.3em;
  }
}

h2 {
  font-size: 1.5em;
  color: gold;
  font-weight: bolder;
} 

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFD700;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}
.scroll-to-top.show {
  display: flex;
  opacity: 1;
}

.loading {
  margin-top: 20px;
  text-align: center;
  font-size: 1.5rem;
  color: #555;
}

.gallery-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  padding: 10px 10px;
  border-radius: 15px;
  background: #A646DD;
  background: linear-gradient(135deg, #A646DD, #7337D3);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 40px auto;
  letter-spacing: 1px;
  line-height: 1.5;
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-family: "Alkatra", serif;
}

@media (max-width: 768px) {
  .gallery-title {
    font-size: 2rem;
    padding: 15px 8px;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 1.5rem;
    padding: 10px 5px;
    max-width: 90%;
  }
}

.gallery-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 15px
}

.gallery-container img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.download-button {
  margin: 20px auto; 
  padding: 10px 20px;
  background-color: gold;
  border: none;
  border-radius: 5px;
  color: darkblue;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  font-weight: bolder;
  display: block; 
  text-align: center;
}

.download-button:hover {
  background-color: purple;
  color: white;
}

.clickable-banner {
  width: 100%; 
  max-width: 800px; 
  margin: 20px auto; 
  cursor: pointer; 
}

.clickable-banner img {
  width: 100%; 
  border-radius: 10px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  transition: transform 0.2s; 
}

.clickable-banner:hover img {
  transform: scale(1.02); 
}

.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
}
}

.share-container {
  position: fixed;  
  bottom: 20px;     
  left: 20px;       
  z-index: 1000;    
}

.share-btn {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.share-btn img {
  width: 25px;
  height: 25px;
}

.share-btn:active {
  transform: scale(0.9);
}

.share-options {
  position: absolute;
  bottom: 60px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.share-container.active .share-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.share-icon {
  width: 45px;
  height: 45px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.share-icon img {
  width: 30px;
  height: 30px;
}

.share-icon:hover {
  transform: scale(1.1);
}

.whatsapp { background-color: #25D366; }
.facebook { background-color: #1877F2; }
.copy { background-color: #ffff; }

.mail-link {
  display: inline-flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #007BFF;
  text-decoration: none; 
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

.mail-link:hover {
  color: #0056b3;
  transform: scale(1.05);
  text-decoration: none; 
}

.mail-icon {
  margin-right: 8px;
  font-size: 20px;
}

#loading-mask {
  background-color: white;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.copyright-link {
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  color: #0056b3;
  border: 2px solid #0056b3;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.copyright-link:hover {
  background-color: #0056b3;
  color: white;
  text-decoration: none 
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  display: inline-block; 
  vertical-align: middle; 
  margin-right: 8px;
}

@keyframes pulse {
  0% {
      transform: scale(.95);
      box-shadow: 0 0 0 0 rgba(255,0,0,.7)
  }

  70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(255,0,0,0)
  }

  to {
      transform: scale(.95);
      box-shadow: 0 0 0 0 rgba(255,0,0,0)
  }
}

.live-image-container {
  margin-top: 10px;
}

.live-status-img {
  width: 100px; 
  height: auto;
  margin-top: 8px;
}

.live-now-text {
  font-size: 14px;
  font-weight: bold;
  color: red;
  margin-top: 5px;
  text-align: center;
}

:root {
  --primary: #6A0DAD;
  --accent: #FFD700;
  --text: #1a1a1a;
  --bg-light: rgba(255, 255, 255, 0.85);
  --glass: rgba(255, 255, 255, 0.3);
  --shadow: rgba(0, 0, 0, 0.2);
  --radius: 15px;
}


.container {
  max-width: 850px;
  width: 100%;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 25px var(--shadow);
  margin: 10px;
}

.date-button, .audio-control, #ask-sai-button {
  border-radius: 30px;
  background: var(--accent);
  color: var(--primary);
  padding: 12px 24px;
  border: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
}

.date-button:hover,
.audio-control:hover,
#ask-sai-button:hover {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.countdown-box {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 12px var(--shadow);
  color: var(--primary);
  font-weight: bold;
}

.gallery-title {
  font-family: 'Alkatra', cursive;
}

.quote-gradient {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px 25px;
  background: linear-gradient(135deg, #fff1e6, #fbeaff); 
  border-radius: 20px;
  border: 1px solid #ead8f7;
  box-shadow: 0 8px 20px rgba(106, 13, 173, 0.08); 
  text-align: center;
  font-family: 'Georgia', serif;
}

.quote-text {
  font-size: 1.5rem;
  color: #4a2c5c;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 15px;
}

.quote-author {
  font-size: 1.1rem;
  font-weight: bold;
  color: #6A0DAD;
}

@media (max-width: 600px) {
  .quote-gradient {
    padding: 20px 15px;
  }

  .quote-text {
    font-size: 1.2rem;
  }

  .quote-author {
    font-size: 1rem;
  }
}

.live-now-text {
  font-size: 18px; 
  font-weight: bold; 
  color: #0043ee; 
  margin-left: 5px; 
}

.site-version {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 5px 12px;
  font-size: 13px;
  font-family: monospace;
  border-radius: 8px;
  opacity: 0.8;
  z-index: 9999;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  width: max-content;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 4px 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 0.9rem;
  white-space: nowrap;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.playback-button {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  font-size: 0.9rem;
  background-color: #444;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap; 
}

.playback-button:hover {
  background-color: #222;
  color: white;
}

@media (max-width: 768px) {
  .playback-button {
    padding: 8px 16px; 
    font-size: 1rem; 
    margin-top: 10px; 
  }
}

@media (max-width: 480px) {
  .playback-button {
    padding: 10px 20px; 
    font-size: 1.1rem; 
    width: auto; 
    max-width: 90%; 
    margin-left: auto; 
    margin-right: auto; 
    display: block; 
  }
}

.scroll-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  max-width: 600px;
  gap: 10px;
  padding: 0 15px; 
}

.modern-search-input {
  flex-grow: 1;
  padding: 12px 20px;
  border: 2px solid #00bfff; 
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 191, 255, 0.1); 
  background-color: #f0f8ff; 
  color: #333;
}

.modern-search-input::placeholder {
  color: #888;
}

.modern-search-input:focus {
  border-color: #008cba; 
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3); 
}

.modern-search-button {
  padding: 12px 25px;
  background-color: #00bfff; 
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 191, 255, 0.2);
}

.modern-search-button:hover {
  background-color: #008cba; 
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 191, 255, 0.3);
}

.modern-search-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 191, 255, 0.2);
}

.search-results-container {
  margin: 20px auto;
  max-width: 800px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none; 
  color: #333;
}

.search-results-container h3 {
  color: #003366;
  margin-bottom: 15px;
  text-align: center;
}

.search-result-item {
  padding: 12px 15px;
  margin-bottom: 8px;
  background-color: #e0f7ff;
  border-left: 5px solid #00bfff;
  border-radius: 5px;
  font-size: 1.05rem;
}

.search-result-item strong {
  color: #0056b3;
}

.no-results {
  text-align: center;
  color: #888;
  font-style: italic;
  padding: 15px;
}

@media (max-width: 600px) {
  .search-container {
    flex-direction: column;
    gap: 15px;
  }

  .modern-search-input,
  .modern-search-button {
    width: 100%;
    box-sizing: border-box; 
  }

  .modern-search-button {
    justify-content: center; 
  }
}

:root {
  
  --youtube-red-start: #ff4757;
  --youtube-red-end: #e52d27;
  --gallery-blue-start: #0093e9;
  --gallery-blue-end: #80d0c7;
  --text-color: #ffffff;

  
  --button-padding-y: 15px;
  --button-padding-x: 30px;
  --border-radius: 12px;
  --icon-size: 1.5em; 
  --font-size: 16px;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; 
  gap: 20px;
  padding: 20px;
  font-family: 'Inter', 'Roboto', sans-serif;
}

.btn {
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  
  color: var(--text-color);
  text-decoration: none;
  font-size: var(--font-size);
  font-weight: 600;
  white-space: nowrap;

  
  padding: var(--button-padding-y) var(--button-padding-x);
  border: none;
  border-radius: var(--border-radius);
  min-width: 220px;

  
  cursor: pointer;
  user-select: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.btn i {
  font-size: var(--icon-size);
  line-height: 1; 
}

.btn--youtube {
  background: linear-gradient(135deg, var(--youtube-red-start), var(--youtube-red-end));
}

.btn--gallery {
  background: linear-gradient(135deg, var(--gallery-blue-start), var(--gallery-blue-end));
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--text-color); 
  text-decoration: none; 
}

.btn--youtube:focus-visible {
  outline: 3px solid var(--youtube-red-start);
  outline-offset: 3px;
}

.btn--gallery:focus-visible {
  outline: 3px solid var(--gallery-blue-start);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .btn {
    font-size: calc(var(--font-size) * 0.95); 
    padding: 12px 24px;
    min-width: 190px;
  }
}

@media (max-width: 480px) {
  .button-container {
    flex-direction: column; 
    gap: 15px;
    width: 100%;
    box-sizing: border-box; 
  }

  .btn {
    width: 100%; 
    max-width: 320px; 
  }
}

.video-container {
  position: relative;
  padding-top: 56.25%; 
  height: 0;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 15px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-video-title {
  font-size: 1rem;
  font-weight: 700;
  color: #6A0DAD;
  text-align: center;
  margin: 15px 0 10px;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f9f9f9, #fff8e7);
  box-shadow: 0 2px 8px rgba(106, 13, 173, 0.15);
}

.help-box {
  background: linear-gradient(135deg, #FFA500, #FFB733);
  border: 1px solid #FF8C00;
  border-radius: 10px;
  padding: 18px;
  margin: 20px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c2c2c;
  text-align: center;
  max-width: 85%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 500;
}

.help-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.help-box p {
  margin: 0;
  line-height: 1.6;
  font-size: 1.05em;
}

/* Bigger, round, purple icons */
.help-box svg {
  vertical-align: middle;
  display: inline-block;
  margin: 0 8px;
  width: 26px;       /* Increased size */
  height: 26px;      /* Increased size */
  fill: #fff;        /* White icon for contrast */
  background-color: #4b0780;
  border-radius: 50%;
  padding: 8px;      /* Increased padding to keep circle proportionate */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .help-box {
    padding: 12px;
    font-size: 0.9em;
    border-radius: 8px;
  }

  .help-box svg {
    width: 22px;
    height: 22px;
    padding: 6px;
    margin: 0 6px;
  }
}

.watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: #ff0000; /* YouTube red */
  color: white;
  text-decoration: none; /* remove underline */
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.watch-btn i {
  font-size: 1.3rem;
}

.watch-btn:hover {
  background-color: #cc0000;
  color: white; /* keep text white */
  text-decoration: none; /* still no underline */
}