/* styles.css */

body {
  font-family: 'Hind', sans-serif;
  background: url('media/your-background-image.png') no-repeat center center fixed; /* Update the path to your background image */
  background-size: cover; /* Cover the entire viewport */
  margin: 0;
  padding: 0;
  color: #4b2e00;
  scroll-behavior: smooth; /* Enable smooth scrolling */
}

/* Animation Styles */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Statistics Section Styles */
.statistics-section {
  background-color: #fff5d7;
}



.statistics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center;
  margin: 0 auto;
  max-width: unset;
}

.stat-block {
  background: #f9f1e8;
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #ffe0b3;
}

.stat-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 600;
  color: #6b3e00;
  margin-bottom: 15px;
  font-family: 'Hind', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 1.2rem;
  color: #4b2e00;
  font-weight: 600;
  font-family: 'Hind', sans-serif;
  line-height: 1.4;
}

.stat-icon {
  font-size: 3rem;
  color: #6b3e00;
  margin-bottom: 15px;
  display: block;
  text-align: center;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.stat-block:hover .stat-icon {
  transform: scale(1.1);
  opacity: 1;
}

/* Responsive Design for Statistics */
@media (max-width: 768px) {
  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .stat-block {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .stat-label {
    font-size: 1.1rem;
  }
  
  .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  
  .statistics-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .statistics-section {
    padding: 40px 15px;
  }
  
  .stat-block {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 2.4rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .stat-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}

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

/* Apply animations to sections */
section {
  animation: fadeIn 1s ease-in-out;
}

.sidebar a {
  display: block;
  padding: 10px;
  color: #4b2e00;
  text-decoration: none;
  margin: 5px 0; /* Space between links */
  border-radius: 5px; /* Rounded corners for links */
  transition: background-color 0.3s; /* Smooth background change */
  opacity: 0; /* Start hidden */
}

/* Delay for each sidebar link */
.sidebar a:nth-child(1) { animation: slideIn 0.5s ease-in-out forwards; animation-delay: 0.1s; }
.sidebar a:nth-child(2) { animation: slideIn 0.5s ease-in-out forwards; animation-delay: 0.2s; }
.sidebar a:nth-child(3) { animation: slideIn 0.5s ease-in-out forwards; animation-delay: 0.3s; }
.sidebar a:nth-child(4) { animation: slideIn 0.5s ease-in-out forwards; animation-delay: 0.4s; }
.sidebar a:nth-child(5) { animation: slideIn 0.5s ease-in-out forwards; animation-delay: 0.5s; }
.sidebar a:nth-child(6) { animation: slideIn 0.5s ease-in-out forwards; animation-delay: 0.6s; }
.sidebar a:nth-child(7) { animation: slideIn 0.5s ease-in-out forwards; animation-delay: 0.7s; }
.sidebar a:nth-child(8) { animation: slideIn 0.5s ease-in-out forwards; animation-delay: 0.7s; }

.sidebar {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 6px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
  border: 1.5px solid #ffe0b3;
  min-width: 120px;
  max-width: 150px;
}
.sidebar a {
  display: flex;
  align-items: center;
  padding: 7px 10px;
  color: #4b2e00;
  text-decoration: none;
  margin: 4px 0;
  border-radius: 12px;
  font-size: 0.98em;
  transition: background-color 0.2s, transform 0.15s;
  opacity: 1;
  font-weight: 500;
}
.sidebar a:hover {
  background-color: #fff2cc;
  transform: scale(1.06);
}
.sidebar-icon {
  margin-right: 7px;
  font-size: 1.15em;
  vertical-align: middle;
}

header {
  position: sticky;
  top: 0;
  z-index: 1001;
  background-color: #ffcc66;
  padding: 1em 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.09);
  margin-bottom: 0;
}

.second-header {
  position: sticky;
  top: 80px; /* Adjust this value to match the height of your first header if needed */
  z-index: 1000;
  background-color: #ffcc66;
  padding: 0.5em 0;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.09); */
  text-decoration: none;
  margin-top: 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
}

.site-title {
  margin: 0;
  font-size: 2.1rem;
  color: #6b3e00;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration: underline;
}

.fredericka-the-great-regular {
  font-family: "Fredericka the Great", serif !important;
  font-weight: 400;
  font-style: normal;
}

.elephant-image {
  max-width: 80px;
  height: auto;
}

.lang-container {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.hamburger-menu {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }
}

#languageSwitcher {
  padding: 0.3em 0.8em;
  border-radius: 6px;
  border: 1px solid #aa6a00;
  background-color: rgba(255, 251, 230, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #4b2e00;
  font-size: 0.9em;
  font-weight: 600;
  cursor: pointer;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

#languageSwitcher:hover {
  background-color: rgba(255, 242, 204, 0.3);
  transform: scale(1.05);
}

.products-section {
  background-color: #fff5d7;
  padding: 50px 20px;
  font-family: 'Roboto', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #6b3e00;
  text-decoration: underline;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
}

.products-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.products-table th,
.products-table td {
  padding: 1em;
  text-align: center;
  border: 2px solid #ffcc66;
}

.products-table th {
  background-color: #ffcc66;
  color: #333;
  font-weight: 600;
  border-bottom: 3px solid #e6b84d;
}

.products-table tr:hover {
  background-color: #fff9e6;
}

.products-table td:first-child {
  width: 10%;
  font-weight: 500;
}

.products-table td:nth-child(2) {
  width: 60%;
  font-weight: normal !important;
  color: #000 !important;
}

.products-table td:last-child {
  width: 30%;
  font-weight: 600;
  color: #2c5282;
}

.products-table .section-header {
  background-color: #f8f4e8;
  border-top: 2px solid #ffcc66;
  border-bottom: 2px solid #ffcc66;
}

.products-table .section-header td {
  padding: 0.8em 1em;
  font-weight: 600;
  color: #2c5282;
  text-align: center;
  font-size: 1.1em;
}

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

  .products-table .section-header td {
    padding: 0.7em;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .products-table {
    font-size: 0.8em;
  }
  
  .products-table th,
  .products-table td {
    padding: 0.6em;
  }

  .products-table .section-header td {
    padding: 0.5em;
    font-size: 0.9em;
  }
}

main {
  padding: 2em;
  max-width: 800px;
  margin: auto;
  margin-top: 0;
}

section {
  margin-bottom: 2em;
  background-color: #fff5d7;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

h2 {
  color: #6b3e00;
  margin-bottom: 0.5em;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
}

footer {
  background-color: #ffcc66;
  text-align: center;
  padding: 1em;
  font-size: 0.9rem;
  color: #5e3300;
}

.gallery-image {
  height: 300px;
  max-width: 100%;
  object-fit: contain;
  background: #fffbe6;
  display: block;
  margin: 0 auto;
}

iframe {
  width: 100%;
  height: 450px;
  border: 0;
  margin-top: 1em;
}

.logo-image {
  max-width: 80px;
  height: auto;
  margin-right: 20px;
}

.cattle-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 1em;
}
.cattle-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1em;
  width: 220px;
  text-align: center;
  transition: transform 0.2s;
}
.cattle-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.cattle-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5em;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 1em;
}
.testimonial {
  background: #f9f1e8;
  border-left: 5px solid #ffcc66;
  border-radius: 8px;
  padding: 1em 1.5em;
  max-width: 350px;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.testimonial span {
  display: block;
  margin-top: 0.5em;
  font-weight: bold;
  color: #6b3e00;
  font-style: normal;
}

.volunteer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 1em auto 0 auto;
  background: #fff5d7;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.volunteer-form input,
.volunteer-form textarea {
  padding: 0.7em;
  border: 1px solid #c7a17a;
  border-radius: 5px;
  font-size: 1em;
}
.volunteer-form button {
  background: #ffcc66;
  color: #4b2e00;
  border: none;
  border-radius: 5px;
  padding: 0.7em;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.volunteer-form button:hover {
  background: #ffe0b3;
}

.donate-btn {
  margin-top: 1.5em;
  font-size: 1.1em;
  padding: 0.7em 2em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4b2e00;
  text-decoration: none;
  font-size: 1.1em;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-social .social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-social .social-link i {
  font-size: 1.2em;
}

.footer-social .social-link span {
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 1em;
}
.newsletter-form input[type="email"] {
  padding: 0.5em;
  border-radius: 5px;
  border: 1px solid #c7a17a;
}
.newsletter-form button {
  background: #ffcc66;
  color: #4b2e00;
  border: none;
  border-radius: 5px;
  padding: 0.5em 1.2em;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: #ffe0b3;
}

@media (max-width: 900px) {
  .cattle-profiles {
    flex-direction: column;
    align-items: center;
  }
  main {
    padding: 1em;
  }
}

@media (max-width: 700px) {
  .sidebar {
    position: static;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1em;
    background: rgba(255,255,255,0.97);
    box-shadow: none;
    padding: 4px;
    min-width: unset;
    max-width: unset;
    border-radius: 12px;
  }
  .sidebar a {
    margin: 2px 4px;
    font-size: 0.95em;
    padding: 6px 8px;
    border-radius: 10px;
  }
  .header-content {
    flex-direction: column;
    gap: 10px;
  }
  .elephant-image {
    max-width: 48px;
    margin: 0 6px;
  }
  header h1, .site-title {
    font-size: 1.35rem;
    padding: 0 4px;
  }
  .lang-container {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  #languageSwitcher {
    font-size: 0.85em;
    padding: 0.25em 0.6em;
  }
}

@media screen and (max-width: 480px) {
  .lang-container {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  #languageSwitcher {
    font-size: 0.8em;
    padding: 0.2em 0.5em;
  }
}

.treatment-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 2em 0 2em 0;
}
.treatment-card {
  background: #fff5d7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1.2em 1em;
  width: 220px;
  text-align: center;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.treatment-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.treatment-icon {
  font-size: 2.2em;
  margin-bottom: 0.5em;
}

.vet-profiles {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1em;
}
.vet-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1em;
  width: 220px;
  text-align: center;
  transition: transform 0.2s;
}
.vet-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.vet-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5em;
}

.faq-list {
  margin-top: 1em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: #f9f1e8;
  border-left: 5px solid #ffcc66;
  border-radius: 8px;
  padding: 1em 1.5em;
  margin-bottom: 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.faq-item h5 {
  margin: 0 0 0.5em 0;
  color: #6b3e00;
}

#cta {
  background: #fff5d7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1.5em;
  text-align: center;
  margin: 2em 0;
}
#cta a {
  color: #4b2e00;
  text-decoration: underline;
}
#cta a:hover {
  color: #aa6a00;
}

@media (max-width: 900px) {
  .treatment-cards, .vet-profiles {
    flex-direction: column;
    align-items: center;
  }
}

/* Narayan Chatbot Styles */
#narayan-chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chat-popup {
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #4b2e00;
  opacity: 1;
  transform: translateY(0);
  pointer-events: none;
  white-space: nowrap;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

#narayan-chatbot-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffcc66;
  border: 3px solid #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, background-color 0.2s;
  padding: 0;
  overflow: hidden;
}

.chatbot-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.2s;
}

#narayan-chatbot-btn:hover {
  transform: scale(1.1);
  background-color: #ffd280;
}

#narayan-chatbot-btn:hover .chatbot-icon {
  transform: scale(1.1);
}

/* Add a pulsing outline effect */
@keyframes pulse-outline {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 204, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 102, 0);
  }
}

#narayan-chatbot-btn {
  animation: pulse-outline 2s infinite;
}

#narayan-chatbot-window {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  max-width: 95vw;
  background: #fff5d7;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  overflow: hidden;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2000;
}
#narayan-chatbot-window.closed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(0.98);
}
.narayan-header {
  background: #ffcc66;
  color: #6b3e00;
  padding: 1em;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.narayan-status {
  color: #2ecc40;
  font-size: 0.9em;
  margin-left: 8px;
}
.narayan-messages {
  flex: 1;
  padding: 1em;
  overflow-y: auto;
  background: #fff;
  max-height: 300px;
}
.narayan-message {
  margin-bottom: 1em;
  padding: 0.7em 1em;
  border-radius: 10px;
  max-width: 90%;
  word-break: break-word;
  font-size: 1em;
}
.narayan-bot {
  background: #f9f1e8;
  color: #6b3e00;
  align-self: flex-start;
  border-left: 4px solid #ffcc66;
}
.narayan-user {
  background: #e0f7fa;
  color: #006064;
  align-self: flex-end;
  border-right: 4px solid #6b3e00;
  margin-left: auto;
}
#narayan-chat-form {
  display: flex;
  border-top: 1px solid #ffe0b3;
  background: #fff5d7;
}
#narayan-chat-input {
  flex: 1;
  border: none;
  padding: 0.8em;
  font-size: 1em;
  border-radius: 0 0 0 10px;
  outline: none;
  background: #fff;
}
#narayan-chat-form button {
  background: #ffcc66;
  color: #6b3e00;
  border: none;
  border-radius: 0 0 10px 0;
  padding: 0 1.2em;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
#narayan-chat-form button:hover {
  background: #ffe0b3;
}
@media (max-width: 600px) {
  #narayan-chatbot-window {
    width: 98vw;
    right: -10px;
    bottom: 70px;
    border-radius: 10px;
  }
  #narayan-chatbot-btn {
    width: 36px;
    height: 36px;
    font-size: 1em;
  }
}

#site-fadein-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 251, 230, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}

#site-fadein-overlay.fadeout {
  opacity: 0;
}

.fadein-namaste {
  font-size: 4em;
  color: #4b2e00;
  font-weight: bold;
  animation: fadeInNamaste 1.5s ease-in-out;
  text-shadow: 
    0 0 10px #ffcc66,
    0 0 20px #ffcc66,
    0 0 30px #ffcc66,
    0 0 40px #ffcc66,
    0 0 50px #ffcc66,
    0 0 60px #ffcc66;
  letter-spacing: 0.2em;
  font-family: 'Hind', sans-serif;
}

@keyframes fadeInNamaste {
  from {
    opacity: 0;
    transform: scale(0.8);
    text-shadow: none;
  }
  to {
    opacity: 1;
    transform: scale(1);
    text-shadow: 
      0 0 10px #ffcc66,
      0 0 20px #ffcc66,
      0 0 30px #ffcc66,
      0 0 40px #ffcc66,
      0 0 50px #ffcc66,
      0 0 60px #ffcc66;
  }
}

/* Navigation Styles */
.main-nav {
  background-color: transparent;
  padding: 0;
  text-align: center;
  box-shadow: none;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.2em;
}

.main-nav a {
  color: #6b3e00;
  text-decoration: underline;
  padding: 0.25em 0.3em;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.15em;
  transition: all 0.3s ease;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.main-nav a:hover {
  background-color: #ffd98c;
  transform: translateY(-2px);
}

.main-nav a.active {
  background-color: #ffd98c;
  font-weight: 700;
}

.nav-icon {
  font-size: 1em;
}

@media screen and (max-width: 768px) {
  .second-header {
    padding: 0.4em 0;
  }

  .main-nav a {
    padding: 0.25em 0.3em;
    font-size: 0.9rem;
  }

  .nav-icon {
    font-size: 0.95em;
  }
}

@media screen and (max-width: 480px) {
  .second-header {
    padding: 0.3em 0;
  }

  .main-nav a {
    padding: 0.2em 0.25em;
    font-size: 0.85rem;
  }

  .nav-icon {
    font-size: 0.9em;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: #ffcc66;
  color: #4b2e00;
  border: 2px solid #4b2e00;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.scroll-to-top:hover {
  background-color: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 0.6em 0.8em;
    margin-top: 35px;
  }

  .site-title {
    font-size: 1.5rem;
  }

  .elephant-image {
    max-width: 50px;
  }

  .desktop-option {
    display: none;
  }

  .mobile-option {
    display: block;
  }

  .lang-container {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  #languageSwitcher {
    font-size: 0.85em;
    padding: 0.25em 0.6em;
  }
}

@media screen and (max-width: 480px) {
  header {
    padding: 0.5em 0.6em;
    margin-top: 28px;
  }

  .title-row {
    gap: 8px;
  }

  .site-title {
    font-size: 1.1rem;
  }

  .elephant-image {
    max-width: 35px;
  }

  .lang-container {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  #languageSwitcher {
    font-size: 0.8em;
    padding: 0.2em 0.5em;
  }
}

@media screen and (max-width: 360px) {
  header {
    padding: 0.4em 0.5em;
    margin-top: 25px;
  }

  .title-row {
    gap: 6px;
  }

  .site-title {
    font-size: 1rem;
  }

  .elephant-image {
    max-width: 30px;
  }

  .lang-container {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  #languageSwitcher {
    font-size: 0.8em;
    padding: 0.2em 0.5em;
  }
}

.donate-sidebar {
  background: url('media/Kalash-removebg-preview.png') center 30%/65% no-repeat, rgba(255, 251, 230, 0.95);
  color: #7a4a00;
  font-weight: bold;
  border: none;
  border-radius: 2em;
  padding: 0.2em 0.4em 0.8em 0.4em;
  min-width: 80px;
  min-height: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  position: fixed;
  left: 0;
  top: 35%;
  z-index: 1000;
  text-align: center;
  text-shadow: 0 1px 4px #fff, 0 0 2px #fff;
  font-size: 0.85em;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  animation: glow 2s infinite alternate;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.donate-sidebar[data-i18n] {
  margin-top: 60px;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px #ffcc66, 0 0 10px #ffcc66, 0 0 15px #ffcc66;
  }
  to {
    box-shadow: 0 0 10px #ffcc66, 0 0 20px #ffcc66, 0 0 30px #ffcc66;
  }
}

.donate-sidebar:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

@media (max-width: 600px) {
  .donate-sidebar {
    font-size: 0.75em;
    padding: 0.1em 0.25em 0.6em 0.25em;
    min-width: 30px;
    min-height: 40px;
    top: 30%;
  }
  .donate-sidebar[data-i18n] {
    margin-top: 30px;
  }
}

.qr-code {
  width: 180px;
  height: 180px;
  border: 2px solid #4CAF50;
  border-radius: 10px;
  padding: 8px;
  margin: 20px auto;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.qr-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .qr-code {
    width: 160px;
    height: 160px;
    padding: 6px;
  }
}

@media (max-width: 480px) {
  .qr-code {
    width: 140px;
    height: 140px;
    padding: 5px;
  }
}

.questions-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.question-btn {
  background-color: #fff2cc;
  border: 1px solid #ffcc66;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: left;
  font-size: 0.9em;
  color: #4b2e00;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.question-btn:hover {
  background-color: #ffe0b3;
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.narayan-message.narayan-bot {
  max-width: 85%;
  margin: 8px 0;
  padding: 12px;
  background-color: #fff2cc;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.products-note {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  color: #5a3e2b;
  font-size: 1.1em;
  padding: 10px;
  background-color: rgba(255, 204, 102, 0.1);
  border-radius: 8px;
  border-left: 4px solid #ffcc66;
}

/* Video Story Section */
.video-story-section {
  background-color: #fff5d7;
  padding: 15px 20px;
  text-align: center;
}

.video-story-section .section-title {
  color: #6b3e00;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Hind', sans-serif;
}

.video-description {
  color: #4b2e00;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Hind', sans-serif;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
  background: transparent;
  border: none;
  line-height: 0;
  font-size: 0;
}

.video-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  border-radius: 15px;
  background: transparent;
  outline: none;
  vertical-align: top;
  margin: 0;
  padding: 0;
}

/* Responsive Design for Video Section */
@media (max-width: 768px) {
  .video-story-section {
    padding: 12px 15px;
  }
  
  .video-story-section .section-title {
    font-size: 2rem;
  }
  
  .video-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .video-container {
    max-width: 95%;
    margin: 0 auto;
  }
  
  .video-container iframe {
    height: 300px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .video-story-section {
    padding: 8px 10px;
  }
  
  .video-story-section .section-title {
    font-size: 1.8rem;
  }
  
  .video-description {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .video-container iframe {
    height: 220px;
    border-radius: 15px;
  }
  
  .video-container {
    max-width: 98%;
    margin: 0 auto;
  }
}

.gau-chalisha-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #ffe5b4 0%, #fffbe6 60%, #ffd580 100%);
  text-align: center;
}

.book-container {
  max-width: 800px;
  margin: 0 auto;
  perspective: 1500px;
}

.book {
  position: relative;
  width: 100%;
  height: 550px;
  transform-style: preserve-3d;
  transform-origin: center;
}

.page {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 35px;
  box-sizing: border-box;
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: none;
  backface-visibility: hidden;
}

.page.active {
  display: block;
  transform: rotateY(0deg);
  z-index: 1;
}

.page.turning {
  transform: rotateY(-180deg);
  z-index: 2;
}

.page-content {
  position: relative;
  height: 100%;
  background: linear-gradient(135deg, #fffbe6 0%, #ffe5b4 100%);
  border-radius: 5px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  overflow: hidden;
}
.page-content::before {
  content: 'ॐ';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 7em;
  color: #ffd580;
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.chalisa-text, .page-content h3, .page-content p {
  position: relative;
  z-index: 1;
}
.page-content h3 {
  color: #5a3e2b;
  margin-bottom: 20px;
  font-size: 1.4em;
}

.page-content p {
  color: #4b2e00;
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 15px;
}

.book-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.prev-page, .next-page {
  padding: 10px 20px;
  background-color: #ffcc66;
  color: #4b2e00;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.prev-page:hover, .next-page:hover {
  background-color: #e6b84d;
  transform: scale(1.05);
}

.page-number {
  font-size: 1.1em;
  color: #5a3e2b;
  font-weight: 500;
}

.gau-chalisha-section .section-title {
  font-size: 2.5em;
  color: #8B4513;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.gau-chalisha-section .section-title::before,
.gau-chalisha-section .section-title::after {
  content: 'ॐ';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: #FF0000;
  opacity: 0.9;
}

.gau-chalisha-section .section-title::before {
  left: -30px;
}

.gau-chalisha-section .section-title::after {
  right: -30px;
}

@media (max-width: 768px) {
  .book {
    height: 500px;
  }
  
  .page-content {
    padding: 20px;
  }
  
  .chalisa-elephant {
    position: static;
    display: block;
    margin: 0 auto 16px auto;
    transform: none;
  }
  
  .page-content h3, .page-content p {
    text-align: center;
  }
  
  .prev-page, .next-page {
    padding: 8px 15px;
    font-size: 1em;
  }

  .gau-chalisha-section .section-title {
    font-size: 2em;
  }
  
  .gau-chalisha-section .section-title::before,
  .gau-chalisha-section .section-title::after {
    font-size: 0.7em;
  }
}

.chalisa-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.chalisa-elephant {
  width: 90px;
  height: auto;
}
.left-elephant {
  margin-right: 24px;
}
.right-elephant {
  margin-left: 24px;
}
.chalisa-text {
  flex: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .chalisa-flex {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
  }
  .left-elephant, .right-elephant {
    margin: 0 0 12px 0;
  }
  .chalisa-text {
    margin: 0 0 12px 0;
  }
}

/* Circular background for Call Now button (always visible, matches scroll-to-top) */
.callnow-sidebar {
  position: fixed;
  bottom: 140px;
  right: 24px;
  width: 50px;
  height: 50px;
  background-color: #ffcc66;
  color: #4b2e00;
  border: 2px solid #4b2e00;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1002;
  opacity: 1;
  visibility: visible;
}
.callnow-sidebar img {
  width: 75%;
  height: 75%;
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  display: block;
  margin: 0;
}
.callnow-sidebar:hover {
  background-color: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Modal for desktop call info */
.callnow-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.3);
}
.callnow-modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 24px 32px;
  border-radius: 12px;
  width: 90%;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  position: relative;
}
.callnow-modal-close {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 1.5em;
  color: #007a4a;
  cursor: pointer;
}

@media (max-width: 600px) {
  /* Remove .callnow-sidebar override for font-size, padding, min-width, min-height, and top */
}

@media screen and (min-width: 769px) {
  .callnow-sidebar {
    width: 60px;
    height: 60px;
  }
  .callnow-sidebar img {
    width: 80%;
    height: 80%;
    max-width: 80%;
    max-height: 80%;
  }
}

/* Social Media Toggle Button */
.social-toggle-btn {
  position: fixed;
  bottom: 220px;
  right: 24px;
  width: 50px;
  height: 50px;
  background-color: #ffcc66;
  color: #4b2e00;
  border: 2px solid #4b2e00;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1002;
  opacity: 1;
  visibility: visible;
}

.social-toggle-btn:hover {
  background-color: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-toggle-btn.active {
  background-color: #ffd700;
  transform: rotate(45deg);
}

/* Social Media Buttons Container */
.social-buttons-container {
  position: fixed;
  bottom: 280px;
  right: 24px;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.social-buttons-container.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Social Media Floating Buttons */
.social-sidebar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.social-sidebar:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-sidebar.facebook {
  background-color: #1877f2;
  color: white;
}

.social-sidebar.facebook:hover {
  background-color: #166fe5;
}

.social-sidebar.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-sidebar.instagram:hover {
  background: linear-gradient(45deg, #e0852e 0%, #d55f37 25%, #c7223e 50%, #b71f5b 75%, #a7157a 100%);
}

.social-sidebar.youtube {
  background-color: #ff0000;
  color: white;
}

.social-sidebar.youtube:hover {
  background-color: #cc0000;
}

@media screen and (min-width: 769px) {
  .social-toggle-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .social-sidebar {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

#donate-modal-blur {
  display: none;
  position: fixed;
  z-index: 99998;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
#donate-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: #fffbe7;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 2em 2.2em 1.5em 2.2em;
  min-width: 320px;
  max-width: 95vw;
  min-height: 320px;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
}
#donate-modal .close-btn {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 1.7em;
  color: #b8860b;
  background: none;
  border: none;
  cursor: pointer;
}
.donate-modal-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2em;
  gap: 1.2em;
}
.donate-modal-tab {
  padding: 0.5em 1.2em;
  border-radius: 8px 8px 0 0;
  background: #ffd98c;
  color: #6b3e00;
  font-weight: bold;
  cursor: pointer;
  border: 2px solid #ffd98c;
  border-bottom: none;
  transition: background 0.2s, color 0.2s;
}
.donate-modal-tab.active {
  background: #fffbe7;
  color: #b8860b;
  border-bottom: 2px solid #fffbe7;
}
.donate-modal-content {
  margin-bottom: 1.5em;
}
.donate-modal-upi {
  display: none;
}
.donate-modal-netbanking {
  display: none;
}
.donate-modal-content.active {
  display: block;
}
.donate-modal-content img {
  max-width: 180px;
  margin: 1em auto 0.5em auto;
  display: block;
}
.donate-modal-form-btn {
  margin-top: 1.2em;
  background: linear-gradient(135deg, #ffd98c 0%, #ffcc66 100%);
  color: #6b3e00;
  border: 2px solid #b8860b;
  border-radius: 8px;
  padding: 0.7em 2em;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.donate-modal-form-btn:hover {
  background: #ffcc66;
}
@media (max-width: 600px) {
  #donate-modal {
    min-width: 95vw;
    padding: 1em 0.5em 1em 0.5em;
  }
  .donate-modal-content img {
    max-width: 90vw;
  }
}

/* Quote of the Day Section */
.quote-of-the-day-section {
  margin: 32px auto 0 auto;
  max-width: 600px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.7); /* semi-transparent white */
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
}

.quote-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-label {
  font-size: 1.22em;
  font-weight: 800;
  color: #6b3e00;
  margin-bottom: 0.3em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

.quote-text {
  font-size: 1.13em;
  font-style: italic;
  color: #333;
  margin: 0;
  opacity: 0.92;
  line-height: 1.5;
  font-weight: 600;
}

.quote-author {
  display: block;
  margin-top: 0.5em;
  font-size: 0.98em;
  color: #6b3e00;
  font-weight: 500;
  opacity: 0.85;
}

@media (max-width: 700px) {
  .quote-of-the-day-section {
    max-width: 95vw;
    padding: 12px 8vw;
    font-size: 0.98em;
  }
  .quote-text {
    font-size: 1em;
  }
}

#about {
  margin-top: 0;
}

.blog-card {
  background: #fffbe9;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 1.5em 1.2em 1em 1.2em;
  margin: 1.5em auto;
  max-width: 600px;
  transition: box-shadow 0.2s;
  position: relative;
}
.blog-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.blog-title {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.blog-icon {
  font-size: 1.5em;
}
.blog-content {
  font-size: 1.08em;
  margin-bottom: 1em;
  color: #4b2e00;
}
.blog-actions {
  display: flex;
  gap: 1.2em;
  margin-bottom: 0.5em;
  align-items: center;
}
.like-btn, .comment-btn, .share-btn {
  background: #ffe0a3;
  border: none;
  border-radius: 6px;
  padding: 0.4em 1em;
  font-size: 1em;
  cursor: pointer;
  font-weight: 600;
  color: #a86a00;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.like-btn:hover, .comment-btn:hover, .share-btn:hover {
  background: #ffd580;
  color: #7a4a00;
}
.blog-comments {
  margin-top: 1em;
  background: #fff7e0;
  border-radius: 8px;
  padding: 0.8em 1em;
  font-size: 0.98em;
}
.blog-comment-form {
  display: flex;
  gap: 0.5em;
  margin-top: 0.5em;
}
.blog-comment-form input, .blog-comment-form textarea {
  flex: 1;
  border-radius: 5px;
  border: 1px solid #e6b84d;
  padding: 0.4em 0.7em;
  font-size: 1em;
}
.blog-comment-form button {
  background: #ffcc66;
  border: none;
  border-radius: 5px;
  padding: 0.4em 1em;
  font-weight: 600;
  color: #4b2e00;
  cursor: pointer;
  transition: background 0.2s;
}
.blog-comment-form button:hover {
  background: #ffd580;
}
.blog-comment {
  margin-bottom: 0.5em;
  border-bottom: 1px solid #ffe0a3;
  padding-bottom: 0.3em;
}

.blogs-section-title {
  text-align: center;
  margin: 2.5em 0 2em 0;
  position: relative;
}
.blogs-title-icon {
  font-size: 2.5em;
  display: block;
  margin-bottom: 0.2em;
  color: #ffb300;
  filter: drop-shadow(0 2px 6px #ffe0a3);
}
.blogs-title-main {
  font-size: 2.3em;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #a86a00;
  margin: 0.1em 0 0.2em 0;
  text-shadow: 0 2px 8px #ffe0a3;
  display: inline-block;
}
.blogs-title-sub {
  font-size: 1.1em;
  color: #7a4a00;
  margin-bottom: 0.7em;
  font-style: italic;
  opacity: 0.85;
}
.blogs-title-divider {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #ffcc66 0%, #ffe0a3 100%);
  border-radius: 3px;
  margin: 0.7em auto 0 auto;
  box-shadow: 0 2px 8px #ffe0a3;
}

.cow-blessings-section-title {
  text-align: center;
  margin: 2.5em 0 2em 0;
  position: relative;
}
.cow-blessings-title-icon {
  font-size: 2.5em;
  display: block;
  margin-bottom: 0.2em;
  color: #ffb300;
  filter: drop-shadow(0 2px 6px #ffe0a3);
}
.cow-blessings-title-main {
  font-size: 2.3em;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #a86a00;
  margin: 0.1em 0 0.2em 0;
  text-shadow: 0 2px 8px #ffe0a3;
  display: inline-block;
}
.cow-blessings-title-sub {
  font-size: 1.1em;
  color: #7a4a00;
  margin-bottom: 0.7em;
  font-style: italic;
  opacity: 0.85;
}
.cow-blessings-title-divider {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #ffcc66 0%, #ffe0a3 100%);
  border-radius: 3px;
  margin: 0.7em auto 0 auto;
  box-shadow: 0 2px 8px #ffe0a3;
}

/* Center align cow blessing cards and set background to white */
#cow-blessings-cards {
  justify-content: center;
}
#cow-blessings-cards .blog-card {
  background: #fffbe9;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* --- Footer Styles Start --- */
.site-footer.compact-footer {
  background: #fff8e1 !important;
  color: #6b3e00 !important;
  font-family: 'Poppins', 'Hind', Arial, sans-serif;
  font-size: 0.97rem;
  border-top: 1px solid #ffe0a3;
  letter-spacing: 0.01em;
  padding-top: 0.5rem !important;
  padding-bottom: 0 !important;
}
.site-footer.compact-footer .container {
  max-width: 1200px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.site-footer.compact-footer .row {
  margin-left: 0;
  margin-right: 0;
}
.site-footer.compact-footer .footer-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
  color: #6b3e00 !important;
  font-family: 'Poppins', Arial, sans-serif;
  border-bottom: 2px solid #b8860b;
  padding-bottom: 0.2em;
  display: inline-block;
}
.site-footer.compact-footer .footer-about-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b3e00 !important;
  font-family: 'Hind', Arial, sans-serif;
  margin-bottom: 0;
  padding: 0 0.1rem;
}
.site-footer.compact-footer .footer-links {
  padding-left: 0;
  margin-bottom: 0;
}
.site-footer.compact-footer .footer-link {
  color: #6b3e00 !important;
  text-decoration: none;
  display: block;
  margin-bottom: 0.2em;
  font-size: 0.97rem;
  transition: color 0.2s;
  padding: 1px 0;
}
.site-footer.compact-footer .footer-link:hover {
  color: #6b3e00;
  text-decoration: underline;
}
.site-footer.compact-footer .footer-contact li {
  margin-bottom: 0.2em;
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  word-break: keep-all;
  padding: 1px 0;
}

/* Keep email address on single line */
.site-footer.compact-footer .footer-contact li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-footer.compact-footer .footer-contact i {
  color: #6b3e00 !important;
  margin-right: 0.5em;
  min-width: 18px;
  font-size: 1.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-top: 0;
}
.site-footer.compact-footer .footer-social-links {
  gap: 0.5em;
  margin-top: 0.1em;
}
.site-footer.compact-footer .footer-social-icon {
  color: #6b3e00 !important;
  font-size: 1.1em;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffd98c;
  margin-right: 0.3em;
  box-shadow: 0 1px 2px rgba(107,62,0,0.04);
}
.site-footer.compact-footer .footer-social-icon:last-child {
  margin-right: 0;
}
.site-footer.compact-footer .footer-social-icon:hover {
  color: #6b3e00 !important;
  background: #ffd98c;
  transform: scale(1.08);
}
.footer-bottom-bar {
  background: #fff8e1 !important;
  color: #6b3e00;
  font-size: 0.93rem;
  border-top: 1px solid #ffe0a3;
  margin-top: 0;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.footer-bottom-bar .container {
  text-align: center !important;
  max-width: 1200px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.footer-equal-cols {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.footer-col {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  margin: 0 !important;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}
@media (max-width: 991.98px) {
  .site-footer.compact-footer .container, .footer-bottom-bar .container {
    max-width: 100%;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
  .site-footer.compact-footer .row > div {
    padding-right: 0 !important;
  }
  .footer-col {
    padding: 0 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .site-footer.compact-footer .row > div {
    margin-bottom: 1.2rem !important;
    padding-right: 0 !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-bottom-bar .container {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
  .footer-equal-cols {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-col {
    width: 100%;
    align-items: center !important;
    text-align: center !important;
    padding: 0;
  }
}
@media (max-width: 575.98px) {
  .site-footer.compact-footer {
    font-size: 0.93rem;
  }
  .site-footer.compact-footer .footer-title {
    font-size: 0.97rem;
  }
  .site-footer.compact-footer .container, .footer-bottom-bar .container {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
}
/* --- Footer Styles End --- */

.donate-popup {
  position: fixed;
  left:5px;
  top: 33%;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  color: #4b2e00;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  white-space: normal;
  animation: float 2s ease-in-out infinite;
  z-index: 1100;
  min-width: 220px;
  max-width: 320px;
}

@media (max-width: 600px) {
  .donate-popup {
    left: 70px;
    top: 30%;
    font-size: 13px;
    min-width: 140px;
    max-width: 200px;
    padding: 8px 10px;
  }
}

/* My Seva Journey Card Slider Styles */
.my-seva-journey-slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 1.5em auto;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-seva-journey-card {
  display: none;
  flex-direction: column;
  align-items: center;
  background: #fffbe6;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  padding: 2em 1.5em 1.2em 1.5em;
  min-width: 270px;
  max-width: 100%;
  min-height: 120px;
  transition: opacity 0.5s, transform 0.5s;
  opacity: 0;
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  margin: auto;
  z-index: 1;
}
.my-seva-journey-card.active {
  display: flex;
  opacity: 1;
  position: relative;
  z-index: 2;
  animation: fadeIn 0.7s;
}
.my-seva-journey-card p {
  font-size: 1.1em;
  color: #6b3e00;
  margin-bottom: 0.7em;
  text-align: center;
}
.my-seva-journey-card span {
  font-size: 1em;
  color: #b8860b;
  font-weight: 600;
  text-align: center;
}
.my-seva-journey-nav {
  display: flex;
  justify-content: center;
  gap: 1.2em;
  margin-top: 0.5em;
}
.my-seva-journey-nav button {
  background: #ffd98c;
  color: #6b3e00;
  border: 1.5px solid #b8860b;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.my-seva-journey-nav button:hover {
  background: #ffcc66;
  color: #4b2e00;
}
@media (max-width: 600px) {
  .my-seva-journey-slider {
    max-width: 98vw;
    min-height: 140px;
  }
  .my-seva-journey-card {
    padding: 1.2em 0.7em 1em 0.7em;
    min-width: 0;
    font-size: 0.98em;
  }
  .reviewer-photo {
    width: 70px !important;
    height: 70px !important;
    margin: 0 auto !important;
    display: block;
    border-radius: 50%;
    object-fit: cover;
  }
  .my-seva-journey-card.active > div {
    gap: 8px !important;
  }
}

/* Donate Modal Amount Selection Styles */
.donate-step {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.donate-step.active {
  display: block;
}

.amount-presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8em;
  margin-bottom: 1.5em;
}

.amount-preset {
  background: #fffbe6;
  border: 2px solid #b8860b;
  border-radius: 8px;
  padding: 0.8em 0.5em;
  font-size: 1em;
  font-weight: 600;
  color: #6b3e00;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.amount-preset:hover {
  background: #ffd98c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.amount-preset.selected {
  background: #ffcc66;
  border-color: #6b3e00;
  color: #4b2e00;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.custom-amount {
  margin-bottom: 1.5em;
}

.custom-amount label {
  display: block;
  margin-bottom: 0.5em;
  color: #6b3e00;
  font-weight: 600;
  font-size: 0.95em;
}

.custom-amount input {
  width: 100%;
  padding: 0.8em;
  border: 2px solid #b8860b;
  border-radius: 8px;
  font-size: 1em;
  color: #6b3e00;
  background: #fffbe6;
  box-sizing: border-box;
}

.custom-amount input:focus {
  outline: none;
  border-color: #6b3e00;
  box-shadow: 0 0 0 3px rgba(107, 62, 0, 0.1);
}

.proceed-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffd98c 0%, #ffcc66 100%);
  color: #6b3e00;
  border: 2px solid #b8860b;
  border-radius: 8px;
  padding: 0.8em 1.5em;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.proceed-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffcc66 0%, #ffb84d 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.proceed-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  border-bottom: 1px solid #ffe0b3;
}

.back-btn {
  background: none;
  border: none;
  color: #b8860b;
  font-size: 1em;
  cursor: pointer;
  padding: 0.5em;
  border-radius: 4px;
  transition: background 0.2s;
}

.back-btn:hover {
  background: rgba(184, 134, 11, 0.1);
}

.selected-amount {
  font-size: 1.1em;
  font-weight: 600;
  color: #6b3e00;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .amount-presets {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6em;
  }
  
  .amount-preset {
    padding: 0.7em 0.4em;
    font-size: 0.95em;
  }
  
  .payment-header {
    flex-direction: column;
    gap: 0.8em;
    text-align: center;
  }
  
  .back-btn {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .amount-presets {
    grid-template-columns: 1fr;
    gap: 0.5em;
  }
  
  .amount-preset {
    padding: 0.8em 0.5em;
    font-size: 1em;
  }
}

/* QR Code Container Styles */
#qr-code-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em 0;
  min-height: 200px;
  background: #fff;
  border-radius: 8px;
  padding: 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#qr-code-container canvas {
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Loading state for QR code */
#qr-code-container:empty::before {
  content: "Generating QR Code...";
  color: #b8860b;
  font-style: italic;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

@media (max-width: 600px) {
  #qr-code-container {
    min-height: 180px;
    padding: 0.8em;
  }
  
  #qr-code-container canvas {
    width: 180px !important;
    height: 180px !important;
  }
}

/* Trustee Testimonials Section */
.trustee-testimonials-section {
  background-color: #fff5d7;
  padding: 3rem 1.5rem;
  margin: 2rem 0;
}

.trustee-testimonials-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #6b3e00;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
  position: relative;
}

.trustee-testimonials-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffcc66, #b8860b);
  border-radius: 2px;
}

.trustee-carousel-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.trustee-swiper {
  padding: 0 20px;
}

.trustee-card {
  background: #f9f1e8;
  border-radius: 20px;
  padding: 2.5rem;
  /* Remove box-shadow and any border that could cause a thick line */
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); */
  border: 2px solid #ffe0b3;
  transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trustee-card::before,
.trustee-card::after {
  display: none !important;
  content: none !important;
}

.trustee-card:hover {
  /* Remove box-shadow on hover as well */
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); */
  transform: translateY(-5px);
}

.trustee-card:hover::before,
.trustee-card:hover::after {
  display: none !important;
  content: none !important;
}

.trustee-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid #ffcc66;
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.2);
}

.trustee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trustee-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trustee-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6b3e00;
  margin-bottom: 0.5rem;
  font-family: 'Hind', sans-serif;
}

.trustee-subtitle {
  font-size: 1rem;
  color: #b8860b;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: 'Hind', sans-serif;
}

.trustee-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b2e00;
  font-style: italic;
  margin: 0;
  position: relative;
  padding: 0 1rem;
}

.trustee-quote::before {
  content: '"';
  font-size: 3rem;
  color: #ffcc66;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: serif;
  line-height: 1;
}

.trustee-quote::after {
  content: '"';
  font-size: 3rem;
  color: #ffcc66;
  position: absolute;
  bottom: -2rem;
  right: -0.5rem;
  font-family: serif;
  line-height: 1;
}

/* Navigation */
.trustee-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;
}

.trustee-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #b8860b;
  background: #ffd98c;
  color: #6b3e00;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trustee-nav-btn:hover {
  background: #ffcc66;
  color: #4b2e00;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}

.trustee-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.trustee-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #6b3e00;
  font-family: 'Hind', sans-serif;
}

.trustee-current {
  color: #b8860b;
  font-size: 1.3rem;
}

.trustee-separator {
  color: #6b3e00;
  opacity: 0.7;
}

.trustee-total {
  color: #6b3e00;
}

/* Swiper Customization */
.trustee-swiper .swiper-slide {
  height: auto;
  padding: 1rem 0;
}

.trustee-swiper .swiper-slide-active .trustee-card {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
  .trustee-testimonials-section {
    padding: 2rem 1rem;
  }
  
  .trustee-testimonials-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .trustee-card {
    padding: 2rem 1.5rem;
  }
  
  .trustee-image {
    width: 100px;
    height: 100px;
    margin-bottom: 1.2rem;
  }
  
  .trustee-name {
    font-size: 1.2rem;
  }
  
  .trustee-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }
  
  .trustee-quote {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .trustee-quote::before {
    font-size: 2.5rem;
    top: -0.8rem;
    left: -0.3rem;
  }
  
  .trustee-quote::after {
    font-size: 2.5rem;
    bottom: -1.5rem;
    right: -0.3rem;
  }
  
  .trustee-carousel-nav {
    margin-top: 1.5rem;
    gap: 1.5rem;
  }
  
  .trustee-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .trustee-progress {
    font-size: 1rem;
  }
  
  .trustee-current {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .trustee-testimonials-section {
    padding: 1.5rem 0.8rem;
  }
  
  .trustee-testimonials-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .trustee-card {
    padding: 1.5rem 1rem;
  }
  
  .trustee-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
  
  .trustee-name {
    font-size: 1.1rem;
  }
  
  .trustee-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .trustee-quote {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .trustee-quote::before {
    font-size: 2rem;
    top: -0.6rem;
    left: -0.2rem;
  }
  
  .trustee-quote::after {
    font-size: 2rem;
    bottom: -1.2rem;
    right: -0.2rem;
  }
  
  .trustee-carousel-nav {
    margin-top: 1.2rem;
    gap: 1rem;
  }
  
  .trustee-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .trustee-progress {
    font-size: 0.9rem;
  }
  
  .trustee-current {
    font-size: 1.1rem;
  }
}

/* Ensure all volunteer review cards have the same height */
.my-seva-journey-slider {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.my-seva-journey-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px; /* Adjust this value to match the 2nd review's height */
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .my-seva-journey-slider {
    flex-direction: column;
  }
  .my-seva-journey-card {
    min-height: 0;
  }
}

/* Hide chat with naarad popup when hamburger menu is open */
.main-nav.active ~ #narayan-chatbot .chat-popup {
  display: none !important;
}

/* Hamburger menu open: partially show chat with naarad popup like donate now popup */
.main-nav.active ~ #narayan-chatbot .chat-popup {
  position: fixed !important;
  left: 5px !important;
  top: 55%;
  right: auto !important;
  bottom: auto !important;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1100;
  transform: translateY(0) scale(0.92);
  max-width: 220px;
  min-width: 120px;
  white-space: normal;
  display: block !important;
}
@media (max-width: 600px) {
  .main-nav.active ~ #narayan-chatbot .chat-popup {
    left: 70px !important;
    top: 60%;
    font-size: 13px;
    min-width: 100px;
    max-width: 160px;
    padding: 8px 10px;
  }
}

/* Volunteer Marquee Styles */
.volunteer-marquee-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 1.5em auto;
  overflow: hidden;
  position: relative;
}

.volunteer-marquee {
  width: 100%;
  overflow: hidden;
}

.volunteer-marquee-content {
  display: flex;
  gap: 2rem;
  animation: volunteer-marquee-scroll 60s linear infinite;
  width: max-content;
}

.volunteer-marquee-content:hover {
  animation-play-state: paused;
}

@keyframes volunteer-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Update existing my-seva-journey-card styles for marquee */
.volunteer-marquee .my-seva-journey-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fffbe6;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  padding: 2em 1.5em 1.2em 1.5em;
  min-width: 300px;
  max-width: 350px;
  min-height: 200px;
  flex-shrink: 0;
  opacity: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.volunteer-marquee .my-seva-journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.volunteer-marquee .my-seva-journey-card p {
  font-size: 1.1em;
  color: #6b3e00;
  margin-bottom: 0.7em;
  text-align: center;
  line-height: 1.6;
}

.volunteer-marquee .my-seva-journey-card span {
  font-size: 1em;
  color: #b8860b;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5em;
}

.volunteer-marquee .reviewer-photo {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  display: block;
  margin: 0 auto;
}

/* Mobile responsive styles for marquee */
@media (max-width: 768px) {
  .volunteer-marquee-container {
    max-width: 100vw;
    margin: 0 auto 1em auto;
  }
  
  .volunteer-marquee-content {
    gap: 1.5rem;
    animation-duration: 45s;
  }
  
  .volunteer-marquee .my-seva-journey-card {
    min-width: 280px;
    max-width: 320px;
    padding: 1.5em 1em 1em 1em;
    min-height: 180px;
  }
  
  .volunteer-marquee .my-seva-journey-card p {
    font-size: 1em;
    line-height: 1.5;
  }
  
  .volunteer-marquee .reviewer-photo {
    width: 80px !important;
    height: 80px !important;
  }
}

@media (max-width: 480px) {
  .volunteer-marquee-content {
    gap: 1rem;
    animation-duration: 35s;
  }
  
  .volunteer-marquee .my-seva-journey-card {
    min-width: 260px;
    max-width: 300px;
    padding: 1.2em 0.8em 0.8em 0.8em;
    min-height: 160px;
  }
  
  .volunteer-marquee .my-seva-journey-card p {
    font-size: 0.95em;
  }
  
  .volunteer-marquee .reviewer-photo {
    width: 70px !important;
    height: 70px !important;
  }
}

/* S.K.Y. Team Tooltip Styles */
.sky-tooltip-container {
  position: relative;
  display: inline-block;
}
.sky-underline {
  text-decoration: underline;
  cursor: pointer;
}
.sky-tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background: #fffbe6;
  color: #6b3e00;
  text-align: left;
  border: 1px solid #b8860b;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 8px 14px;
  position: absolute;
  left: 50%;
  bottom: 130%;
  transform: translateX(-50%);
  z-index: 2000;
  font-size: 0.98em;
  transition: opacity 0.2s;
  white-space: pre-line;
  font-weight: 600;
}
.sky-tooltip-container:hover .sky-tooltip-text,
.sky-tooltip-container:focus-within .sky-tooltip-text {
  visibility: visible;
  opacity: 1;
}

.rye-regular {
  font-family: "Rye", serif !important;
  font-weight: 400;
  font-style: normal;
}
