@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Eagle+Lake&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Eagle+Lake&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary: #4f46e5;
  --primary-light: #6366f1;
  --primary-dark: #4338ca;
  --secondary: #E93C2D;
  --danger: #ef4444;
  --warning: #f59e0b;
  --light: #fff;
  --dark: #1e293b;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --text-color: #333;
  --primary-gold: #DAA520;
  --deep-red: #8B0000;
  --temple-orange: #FF6B35;
  --sacred-yellow: #FFD700;
  --divine-purple: #4B0082;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}



/* ===== Base Styles ===== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-main);
  line-height: 1.5;
  color: var(--dark);
  margin: 0;
  padding: 0;
  background-color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-top: 0;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

/* ===== Utility Classes ===== */

/* Responsive Container */
.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive max-widths (like Bootstrap's breakpoints) */

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1201px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

/* Section Spacing */

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 767.98px) {
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}


/* Custom CSS */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: var(--deep-red);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 0;
}

.navbar-brand img {
  max-height: 90px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  padding: 38px 20px !important;
  color: var(--light);
}

.navbar-nav {
  border-right: 1px solid var(--light);
}

.nav-link:hover,
.nav-link.active {
  color: var(--sacred-yellow) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  color: var(--text-color);
}

.dropdown-item:hover {
  background-color: var(--deep-red);
  color: var(--light);
}

.contact-info {
  display: flex;
  align-items: center;
  color: var(--light);
  margin-left: 20px;
}

.contact-icon {
  width: 40px;
  margin-right: 15px;
  filter: brightness(0) invert(1);
}

.contact-text h6 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--light);
}

.contact-text p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  color: var(--light);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: none;
}

.logo-text {
  color: var(--primary-gold);
  font-size: 22px;
  font-weight: 600;
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--secondary);
    padding: 1rem;
  }

  .nav-link {
    padding: 25px 20px !important;
    color: var(--text-color);
  }

  .dropdown-menu {
    background-color: var(--gray-light);
    box-shadow: none;
    border-left: 2px solid #eee;
    margin-left: 1rem;
  }

  .dropdown-item {
    white-space: normal;
  }

}

.hero-section {
  position: relative;
  height: 550px;
  background: url(../assets/Varahi-Amman-Temple-Melur.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-carousel .carousel-item {
  height: 550px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(48, 48, 48, 0.74);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 550px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: var(--sacred-yellow);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.divine-btn {
  background: linear-gradient(45deg, var(--primary-gold), var(--sacred-yellow));
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  color: var(--deep-red);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.divine-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(218, 165, 32, 0.5);
  color: var(--deep-red);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--deep-red);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-gold), var(--temple-orange));
}

.temple-slider {
  margin: 80px 0;
  padding: 0 20px;
}

.slider-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.slider-card:hover {
  transform: translateY(-10px);
}

.slider-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
}

.slider-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* Style for Font Awesome carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background: none;
  font-size: 1.5rem;
  color: #fff;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: Add background circle */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
  margin: 0 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.floating-om {
  position: absolute;
  color: rgb(255 215 0 / 56%);
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
}

.floating-om:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-om:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-om:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.temple-info {
  background: linear-gradient(135deg, #FFF8DC 0%, #F0E68C 100%);
  padding: 60px 0;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 3rem;
  color: var(--temple-orange);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Animation for the dotted circle */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Container styling */
.before-after {
  position: relative;
  padding: 40px;
  /* Give space for the animation */
  z-index: 1;
}

/* Yellow circle background */
.before-after:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #f8dd43;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.7;
  /* Make it slightly transparent */
}

/* Rotating dotted circle */
.before-after:before {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  border-radius: 50%;
  background: transparent;
  border: 2px dashed var(--sacred-yellow);
  animation: rotate 20s linear infinite;
  /* Slower rotation */
  opacity: 1;
}

/* Image styling */
.before-after img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 500px;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .before-after:after {
    width: 300px;
    height: 300px;
  }

  .before-after:before {
    width: 330px;
    height: 330px;
  }
}

@media (max-width: 767px) {
  .before-after:after {
    width: 250px;
    height: 250px;
  }

  .before-after:before {
    width: 280px;
    height: 280px;
  }
}

/* Section Styling */
.about-temple {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

/* Image Container */
.temple-image-container {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.temple-image-container img {
  transition: transform 0.5s ease;
}

.temple-image-container:hover img {
  transform: scale(1.02);
}

.divine-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 233, 111, 0.3) 0%, rgba(255, 233, 111, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* Content Styling */
.divine-heading {
  color: var(--deep-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.welcome-heading {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.7rem;
}

.temple-description,
.temple-closing {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Deities List */
.deities-section {
  background-color: rgba(212, 175, 55, 0.1);
  padding: 20px;
  border-radius: 8px;
}

.deities-heading {
  color: var(--deep-red);
  font-weight: 600;
  margin-bottom: 15px;
}

.deities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deities-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.deities-list li i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: var(--deep-red);
  /* optional: om symbol color */
  flex-shrink: 0;
  line-height: 1.5;
}

.deities-list li strong {
  /* display: block; */
  font-weight: bold;
}

.deities-list li span {
  display: block;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .temple-about-content {
    padding-left: 0 !important;
    padding-top: 30px;
  }
}

.special-note-section {
  background: var(--deep-red);
}

.special-note-content p {
  color: var(--light);
  font-size: 25px;
}

.blog-section {
  position: relative;
  background-color: #f8f9fa;
}

.blog-section .container {
  position: relative;
  z-index: 2;
}

.blog-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 71%;
  background: var(--deep-red);
  top: 0;
}

/* Blog Card Styling */
.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
}

.blog-img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.card-body {
  padding: 25px;
}

.post-date {
  color: #d4af37;
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #d4af37;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gold);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
}

/* Carousel Navigation */
.owl-nav {
  text-align: center;
  margin-top: 30px;
}

.owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: #d4af37 !important;
  color: white !important;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: #333 !important;
}

/* Responsive */
@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .blog-img {
    height: 150px;
  }
}

.section-title1 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--light);
  /* text-align: center; */
  margin-bottom: 3rem;
  position: relative;
  padding-left: 100px;
}

.section-title1::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--light);
  bottom: 20px;
  left: 0;
}

.blog-carousel .owl-nav {
  position: absolute;
  top: -110px;
  /* Adjust as needed */
  right: 0;
  display: flex;
  gap: 10px;
}

.blog-carousel .owl-nav button.owl-prev,
.blog-carousel .owl-nav button.owl-next {
  background: var(--light) !important;
  /* Customize button color */
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  color: var(--text-color) !important;
  font-size: 20px;
  font-weight: 700;
}


.gallery-section {
  background: var(--light);
}

.gallery-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: auto;
  max-height: 300px;
  /* Adjust height as needed */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--light);
  background: var(--deep-red);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
}

.swiper-pagination-bullet-active {
  background: #333;
}

.swiper-navigation {
  position: relative;
  z-index: 99;
}

.swiper-button-prev {
  left: -4rem;
  top: -9rem;
}

.swiper-button-next {
  right: -4rem;
  top: -9rem;
}

@media (max-width: 768px) {
  .swiper-button-prev {
    left: 0;
  }

  .swiper-button-next {
    right: 0;
  }

  .blog-carousel .owl-nav {
    top: -70px;
  }
}

.home-cta-container {
  display: flex;
  /* margin: 40px auto; */
  padding: 20px;
  background: var(--sacred-yellow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Left Content Section */
.home-cta-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 850px;
  margin: 0 auto;
}

.home-cta-heading {
  color: #2c3e50;
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.home-cta-description {
  color: #34495e;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

/* Button Styles */
.home-cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.home-cta-btn {
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home-cta-btn--phone,
.home-cta-btn--email,
.home-cta-btn--whatsapp {
  background: var(--deep-red);
  color: var(--light);
}

.home-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.home-cta-btn__icon {
  margin-right: 12px;
  font-size: 20px;
}

/* Right Image Section */
.home-cta-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.home-cta-image__img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-cta-container {
    flex-direction: column;
  }

  .home-cta-content {
    padding: 20px;
    max-width: 100%;
  }

  .home-cta-image {
    order: -1;
    margin-bottom: 30px;
  }

  .home-cta-heading {
    font-size: 28px;
  }
}

/* Footer Styles */
.site-footer {
  background: var(--deep-red);
  color: var(--light);
}

.footer-div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column h3 {
  color: var(--light);
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--light);
}

.footer-contact i {
  color: var(--primary-gold);
  margin-right: 10px;
  margin-top: 3px;
  font-size: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light);
  font-size: 18px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--light);
}

.special-puja-heading {
  font-size: 18px;
  margin-bottom: 20px;
}

.special-puja-times li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-column {
    margin-bottom: 30px;
  }
}

.hero-title span {
  color: #ff1717;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  /* optional: remove any jump */
}

.whatsapp-float {
  position: fixed;
  bottom: 50px;
  /* Center vertically */
  right: 20px;
  transform: translateY(50%);
  /* Adjust to exact center */
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-logo {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  animation: light-bounce 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.whatsapp-logo img {
  width: 100%;
  height: auto;
}

/* Hover effects */
.whatsapp-logo:hover {
  animation: light-bounce 0.8s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-logo {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 30px;
    transform: none;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    left: 45%;
    max-width: 100%;
  }

  .hero-section {
    height: auto;
  }
}

@keyframes light-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}


/* Slide-in effect for the mobile menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    z-index: 1050;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
  }

  .navbar-collapse.show {
    right: 0;
  }
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  z-index: 1060;
  cursor: pointer;
}

@media (max-width: 560px) {
  .home-cta-buttons {
    flex-direction: column;

  }

  .home-cta-btn {
    text-align: center;
    width: 60%;
    margin: 0 auto;
  }
}

.banner-section {
  position: relative;
  background: url('../assets/Varahi-Amman-Temple-Melur.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  color: white;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay for better text visibility */
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: var(--sacred-yellow);
}

.banner-breadcrumb {
  font-size: 1rem;
}

.banner-breadcrumb a {
  color: var(--light);
  text-decoration: none;
  transition: opacity 0.3s;
}

.banner-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.banner-current {
  color: #fff;
}

@media (max-width: 768px) {
  .banner-section {
    padding: 60px 0;
  }

  .banner-heading {
    font-size: 1.8rem;
  }
}


/* About Section */
.about-content {
  font-size: 1.1rem;
}

.priest-info {
  border-left: 4px solid var(--sacred-yellow);
}

.about-image img {
  border: 3px solid var(--sacred-yellow);
}

/* Enhanced About Section Styles */
.about-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 500px;
}

.temple-main-image:hover {
  transform: scale(1.02);
}

.religious-icons-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}

.icon-floating {
  position: absolute;
  font-size: 2rem;
  color: var(--sacred-yellow);
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

.icon-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.icon-2 {
  bottom: 20%;
  left: 10%;
  animation-delay: 1s;
}

.icon-3 {
  top: 50%;
  right: 5%;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.image-decoration {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  pointer-events: none;
}

.decoration-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--sacred-yellow);
}

.decoration-corner.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.decoration-corner.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.decoration-corner.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.decoration-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.about-content-main {
  padding: 2rem;
  /* background: linear-gradient(135deg, rgba(255, 249, 240, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%); */
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  /* border-left: 5px solid var(--sacred-yellow); */
}

.religious-header i {
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  color: var(--deep-red);
}

.religious-header h3 {
  color: var(--primary-gold);
}

.about-subtitle {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
}

.about-description {
  font-size: 1rem;
  line-height: 1.8;
}

.divine-features {
  background: rgba(255, 215, 0, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-item {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--deep-red);
}

.history-section {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.section-header i {
  font-size: 2rem;
  color: var(--deep-red);
}

.section-header h3 {
  color: var(--primary-gold);
}

.history-text {
  font-size: 1rem;
  line-height: 1.8;
}

.significance-points {
  background: rgba(255, 215, 0, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--sacred-yellow);
}

.significance-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  /* background: white; */
  border-radius: 8px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
  font-weight: 500;
  margin-bottom: 0.5rem;
  gap: 5px;
}

.significance-item i {
  font-size: 1.3rem;
  color: var(--deep-red);
}

.priest-info-card {
  background: var(--deep-red);
  color: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
}

.priest-info-card .card-header {
  border: none;
  background: transparent;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  margin-bottom: 1.5rem;
}

.priest-info-card .card-body {
  padding: 0;
}

.priest-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sacred-yellow);
  margin-bottom: 1rem;
}

.priest-experience {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.priest-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.vedic-symbols {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.vedic-symbols i {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.testimonial-section {
  position: relative;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.testimonial-header h5 {
  font-size: 1.3rem;
  font-weight: 400;
}

.testimonial-card {
  background: var(--deep-red);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.user-img-name {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.user-img-name img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.user-n h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sacred-yellow);
  margin-bottom: 5px;
}

.user-n h5 {
  font-size: 0.9rem;
  color: var(--light);
  font-weight: 400;
}

.testimonial-text p {
  color: var(--light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}

.testimonialSwiper .swiper-slide {
  height: auto;
  max-height: 100%;
}

.testimonial-swiper-button-next,
.testimonial-swiper-button-prev {
  position: absolute;
  /* top: 50%; */
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--deep-red);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--light);
  font-size: 1.2rem;
  position: relative;
}

.testimonial-swiper-button-next:hover,
.testimonial-swiper-button-prev:hover {
  background: var(--danger);
  color: var(--sacred-yellow);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.testimonial-swiper-button-next {
  right: 0;
}

.testimonial-swiper-button-prev {
  left: 0;
}

.testimonial-swiper-button-next::after,
.testimonial-swiper-button-prev::after {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.2rem;
}

.testimonial-swiper-button-next::after {
  content: '\f054';
  /* fa-chevron-right */
  margin-left: 2px;
}

.testimonial-swiper-button-prev::after {
  content: '\f053';
  /* fa-chevron-left */
  margin-right: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .testimonial-swiper-button-next,
  .testimonial-swiper-button-prev {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .testimonial-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-header {
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .testimonial-header h2 {
    font-size: 1.8rem;
  }

  .user-img-name {
    flex-direction: column;
    text-align: center;
  }

  .user-img-name img {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.services-section {
  background-color: #fff;
  position: relative;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(108, 74, 182, 0.15);
}

.service-img-container {
  position: relative;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-title {
  background: var(--deep-red);
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
}

.service-title h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--white);
  width: 75%;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
}

.service-arrow {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.service-arrow i {
  background: var(--primary-gold);
  color: white;
  padding: 15px;
  font-size: 1.2rem;
}

.service-content {
  padding: 20px;
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
}

.service-list {
  padding: 0;
}

.service-list li {
  position: relative;
  padding-left: 30px;
  /* create space for icon */
  margin-bottom: 10px;
  line-height: 1.5;
  list-style: none;
}

.service-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  /* adjust vertically if needed */
  color: var(--deep-red);
  font-size: 17px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-header .main-title {
    font-size: 2rem;
  }
}

.contact__form-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  border: 1px solid #ddd;
}

.contact__input {
  border: 1px solid #ddd;
  transition: border-color 0.3s;
  padding: 12px 20px;
}

.contact__input:focus {
  border-color: var(--deep-red);
  box-shadow: none;
}

.contact__submit-btn {
  background: var(--deep-red);
  color: white;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  border-radius: 4px;
  transition: background 0.3s;
}

.contact__submit-btn:hover {
  background: #c10606;
  color: white;
}

.contact__info {
  padding: 30px;
}

.contact__desc {
  margin-bottom: 30px;
}

.contact__icon {
  font-size: 24px;
  color: var(--deep-red);
  margin-right: 20px;
}

.contact__info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

/* Ensure dropdown caret is visible */
select.contact__input {
  appearance: auto;
  /* Restore default styling */
  -webkit-appearance: auto;
  /* Safari */
  -moz-appearance: auto;
  /* Firefox */
  background-image: none;
  /* Remove any conflicting custom background */
}

.festival-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  height: 300px;
}

.festival-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.festival-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.festival-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-red);
}

.festival-date {
  display: inline-block;
  background-color: #ffbebe8a;
  /* Light background */
  color: var(--dark);
  /* Accent color for text */
  font-size: 14px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 20px;
  /* Makes it pill-shaped */
  white-space: nowrap;
  width: fit-content;
}


.festival-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.festival-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  line-height: 1.5;
}

.festival-list i {
  color: var(--deep-red);
  font-size: 1rem;
  margin-top: 2px;
  margin-right: 10px;
  flex-shrink: 0;
}

.festival-img-wrap {
  width: 100%;
}

@media (min-width: 768px) {
  .festival-img-wrap {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .festival-header {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .festival-card {
    height: 100%;
  }
}


.observances-title i {
  color: #6C4AB6;
  margin-right: 10px;
}

.observances-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 22%);
  padding: 30px;
  transition: transform 0.3s ease;
  border: none;
}

.observances-list {
  list-style: none;
  padding: 0;
}

.observances-list li {
  padding: 12px 0;
  position: relative;
  padding-left: 40px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(108, 74, 182, 0.1);
}

.observances-list li:last-child {
  border-bottom: none;
}

.observances-list li:before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  width: 30px;
  height: 30px;
  background: var(--deep-red);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.observances-list strong {
  color: var(--deep-red);
  font-weight: 600;
}

@media (max-width: 768px) {
  .observances-title {
    font-size: 1.8rem;
  }

  .observances-list li {
    padding-left: 35px;
  }
}

.gallery-section {
  background: linear-gradient(135deg, #f9f5ff 0%, #f0e6ff 100%);
}

.gallery-intro {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-caption {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  color: white;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  /* semi-transparent black background */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  /* stronger text shadow for visibility */
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(108, 74, 182, 0.2);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-caption {
  bottom: 0;
  opacity: 1;
}


/* Lightbox customization */
.lightbox .lb-image {
  border: 5px solid white;
  border-radius: 3px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.lb-data .lb-caption {
  font-size: 1rem;
  line-height: 1.4;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  opacity: 1;
  filter: none;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .gallery-img {
    height: 400px;
  }
}

.puja-section {
  background: linear-gradient(135deg, #f9f5ff 0%, #f0e6ff 100%);
}

.puja-content {
  max-width: 800px;
  margin: 0 auto;
}

.puja-service-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.puja-service-content {
  position: relative;
  z-index: 1;
}

.puja-service-title {
  color: var(--deep-red);
  font-weight: 700;
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  line-height: 1.2;
}

.puja-service-title::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(90deg, #e67e22, #e74c3c);
  border-radius: 0.125rem;
}

.puja-service-description {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 90%;
}

.puja-service-image {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  min-height: 300px;
}

.puja-service-image:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}

.puja-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.puja-service-image:hover img {
  transform: scale(1.05);
}

.puja-service-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #e74c3c, #e67e22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 0.5rem 1rem rgba(231, 76, 60, 0.4);
  z-index: 2;
}

.puja-item {
  background: white;
  border-radius: 0.75rem;
  padding: 1.75rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 0.25rem solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.puja-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.1);
  border-left-color: #e67e22;
}

.puja-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(231, 76, 60, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.puja-item:hover::before {
  opacity: 1;
}

.puja-header {
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.75rem;
}

.puja-header h5 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.puja-duration {
  background: linear-gradient(135deg, #ff6b35, #f12711);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.puja-includes {
  list-style-type: none;
  padding-left: 0;
  margin: 1rem 0;
  flex-grow: 1;
}

.puja-includes li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.95rem;
}

.puja-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.btn-success {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.03125rem;
  box-shadow: 0 0.25rem 0.625rem rgba(46, 204, 113, 0.3);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
  /* display: inline-flex;
  align-items: center; */
}

.btn-success:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 0.9375rem rgba(46, 204, 113, 0.4);
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .puja-service-image {
    margin-bottom: 2rem;
    height: 350px;
  }

  .puja-service-title {
    font-size: 2rem;
  }

  .puja-service-description {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .puja-service-title {
    font-size: 1.75rem;
  }

  .puja-service-description {
    font-size: 1rem;
  }

  .puja-header h5 {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .puja-service-section {
    padding: 3rem 0;
  }

  .puja-service-title {
    font-size: 1.5rem;
  }

  .puja-service-image {
    height: 250px;
  }
}

.puja-top-bar {
  background-color: var(--primary-gold);
  /* Light beige background */
  padding: 8px 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.puja-alert-text {
  color: #800020;
  /* Maroon color */
  animation: subtle-blink 3s infinite;
}

.puja-alert-text a{
 color: #800020;
}

@keyframes subtle-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }
}

.puja-alert-text i {
  margin-right: 8px;
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .puja-top-bar {
    font-size: 0.85rem;
    padding: 8px 15px;
  }

  .puja-alert-text i {
    display: none;
  }
  
  .language-switcher{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.testimonial-card .testimonial-text video {
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes it a square */
    object-fit: cover;   /* Ensures the video fills the box */
    border-radius: 8px;  /* Optional: rounded corners */
}
