/* Root Color Palette */
:root {
  --primary: #C58A3E;       /* Golden Brown */
  --secondary: #6B3B1E;     /* Deep Brown */
  --accent: #F3B94C;        /* Light Gold */
  --text-dark: #2B1A0D;
  --text-light: #FFF3E0;
  --bg-light: #FFF8F0;

  --heading-font: 'Marcellus SC', serif;
  --body-font: 'Lora', serif;
}

/* Global Styles */
body {
  font-family: var(--body-font);
  color: var(--text-dark);
  background-color: var(--bg-light);
}


/* Global */
body {
  font-family: var(--body-font);
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* Topbar */
.topbar {
  background: var(--secondary);
  font-size: 14px;
}
.topbar a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar {
  font-family: var(--body-font);
  background-color: var(--accent) !important;
  position: sticky;
 
}

/* 🌄 Navbar with Fixed Background Image + Black Overlay */
.navbar {
  background: url('img/navbar-bg.jpg') center center/cover no-repeat fixed !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #fff;
}

/* 🖤 Black Overlay */
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* ✨ Text & Link Colors */
.navbar .nav-link,
.navbar .company-name,
.navbar .company-name small {
  color: #fff !important;
}

.navbar .nav-link:hover {
  color: #f4c542 !important; /* Golden hover effect */
}

/* Keep content above overlay */
.navbar .container {
  position: relative;
  z-index: 2;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .navbar {
    background-position: center;
    background-attachment: scroll; /* mobile fix for performance */
  }
}

.navbar-brand img {
  background-color: var(--accent)
}
.company-name {
  font-family: var(--heading-font);
  font-size: 16px;
  line-height: 1.2;
  color: var(--secondary);
}

/* Nav Links */
.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--secondary);
  position: relative;
  transition: color 0.3s ease;
  margin: 0 8px;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--bg-light);
}

/* Book Now Button */
.btn-booknow {
  background-color: var(--primary);
  color: white;
  transition: 0.3s ease;
  font-weight: 600;
}
.btn-booknow:hover {
  background-color: var(--secondary);
  color: var(--accent);
}

@media (max-width: 768px){
    .company-name{
        display: none;
    }
}



.hero-section {
  position: relative;
  height: 100vh;
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 26, 13, 0.55);
}

.carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  color: var(--text-light);
}

.carousel-caption h1 {
  font-family: 'Marcellus SC', serif;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  animation: fadeInDown 1.5s ease;
}

.carousel-caption p {
  font-family: 'Lora', serif;
  color: #fff;
  animation: fadeInUp 1.5s ease;
}

.btn-primary {
  background-color: var(--primary);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent);
  color: var(--text-dark);
}

/* Indicators */
.carousel-indicators [data-bs-target] {
  background-color: var(--accent);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}




/* Section Background */
.guruji-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  font-family: var(--body-font);
}

/* Gentle Glow Pattern */
.guruji-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(243,185,76,0.15) 2px, transparent 2px);
  background-size: 60px 60px;
  opacity: 0.25;
  animation: shimmer 20s linear infinite;
  z-index: 0;
}

@keyframes shimmer {
  from { transform: translate(0, 0); }
  to { transform: translate(-60px, -60px); }
}

/* Image */
.guruji-image-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 25px;
  z-index: 1;
}

.golden-glow {
  position: absolute;
  inset: 0;
  border-radius: 25px;
  background: radial-gradient(circle at 50% 80%, rgba(197,138,62,0.35), transparent 70%);
  z-index: 1;
}

.guruji-image-wrapper img {
  border: 4px solid var(--accent);
  border-radius: 25px;
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.guruji-image-wrapper:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(243,185,76,0.6);
}

/* Name Overlay */
.guruji-name {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  color: var(--text-light);
  padding: 10px 25px;
  border-radius: 30px;
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.guruji-name span {
  display: block;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
}

/* Text Styling */
.text-gradient {
  font-family: var(--heading-font);
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.guruji-text {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: justify;
}

/* Call Buttons */
.btn-call {
  background: var(--secondary);
  color: #fff;
  border-radius: 30px;
  padding: 10px 22px;
  transition: 0.4s ease;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(107,59,30,0.3);
}

.btn-call:hover {
  background: var(--accent);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(243,185,76,0.4);
}

/* ✨ Animation Effects ✨ */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

.fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 1.2s ease forwards;
}

.guruji-image-wrapper img {
  width: 100%;
  max-width: 550px;  /* control overall image width */
  height: auto;      /* keep aspect ratio */
  aspect-ratio: 3 / 4; /* ensures portrait-style proportions */
  object-fit: cover;  /* crops nicely if the image is large */
  border: 4px solid var(--accent);
  border-radius: 25px;
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

@media (max-width: 768px) {
  .guruji-image-wrapper img {
    max-width: 450px;
    aspect-ratio: 3 / 4;
  }
}

/* About Naadi Section */
.about-naadi-section {
  background: var(--bg-light);
  font-family: var(--body-font);
  position: relative;
  overflow: hidden;
}

.about-img-wrapper {
  position: relative;
  display: inline-block;
}

.about-img-wrapper img {
  max-width: 90%;
  border: 4px solid var(--accent);
  border-radius: 20px;
  transition: 0.6s ease;
}

.about-img-wrapper img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(243,185,76,0.6);
}

/* Orb glow effect */
.golden-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(197,138,62,0.4), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: orbPulse 6s ease-in-out infinite alternate;
}

@keyframes orbPulse {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  to { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* Text */
.about-text {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: justify;
}

/* Animations */
.fade-in-left {
  animation: fadeInLeft 1s ease forwards;
}
.fade-in-right {
  animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

.parallax-section {
  position: relative;
  overflow: hidden;
  font-family: var(--body-font);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(43, 26, 13, 0.8), rgba(197, 138, 62, 0.6));
  z-index: 1;
}

/* Text Styles */
.parallax-section h2,
.parallax-section p {
  position: relative;
  z-index: 2;
}

.parallax-section h2 {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(243,185,76,0.4);
}

/* ✨ Button Hover Effect */
.btn-call {
  position: relative;
  z-index: 2;
  background: var(--secondary);
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  transition: 0.4s ease;
  box-shadow: 0 4px 10px rgba(107,59,30,0.4);
}

.btn-call:hover {
  background: var(--accent);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(243,185,76,0.5);
}

/* ✨ Entrance Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 1.2s ease forwards;
}

.services-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  font-family: var(--body-font);
}

/* Decorative Glow */
.services-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(243,185,76,0.15) 2px, transparent 2px);
  background-size: 70px 70px;
  opacity: 0.25;
  animation: shimmer 25s linear infinite;
  z-index: 0;
}

/* Service Card */
.service-card {
  background: #fff;
  border: 2px solid rgba(197,138,62,0.2);
  transition: all 0.5s ease;
  z-index: 1;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(197,138,62,0.3);
}

/* Icon Style */
.icon-wrapper {
  font-size: 2.8rem;
  color: var(--primary);
  background: rgba(197,138,62,0.1);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: 0.4s ease;
}

.service-card:hover .icon-wrapper {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(243,185,76,0.5);
}

/* Fade In Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: tr }}
  


.testimonials-section {
  background: linear-gradient(135deg, #faf9f6, #fff);
  overflow: hidden;
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 1s ease-in-out;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 50px;
  color: var(--accent);
  opacity: 0.2;
}

.message {
  font-style: italic;
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  min-height: 100px;
}

h5 {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
}

span {
  font-size: 14px;
  color: #777;
}

/* Responsive Design */
@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

footer.modern-footer {
  background: var(--secondary);
  color: var(--text-light);
  position: relative;
  font-family: var(--body-font);
  overflow: hidden;
  z-index: 1;
}

/* Fix: Ensure content stays above glowing effect */
footer.modern-footer .container {
  position: relative;
  z-index: 5;
}

/* Background glow safely behind */
footer.modern-footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(243,185,76,0.08) 10%, transparent 70%);
  animation: moveGlow 30s linear infinite;
  z-index: 0; /* 🔥 This ensures clicks work */
}

/* Animations */
@keyframes moveGlow {
  from { transform: translate(0, 0); }
  to { transform: translate(-200px, -200px); }
}

/* Titles */
.footer-title {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}
.footer-title::after {
  content: "";
  width: 45px;
  height: 3px;
  background: var(--accent);
  display: block;
  margin-top: 6px;
  border-radius: 10px;
}

/* About Text */
.footer-about .about-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Useful Links */
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}
.footer-links ul li a i {
  color: var(--accent);
  transition: transform 0.3s ease;
}
.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.footer-links ul li a:hover i {
  transform: translateX(4px);
}

/* Contact */
.footer-contact p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-contact a {
  color: var(--accent);
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}

/* Divider & Bottom */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
}
.footer-bottom {
  font-size: 0.9rem;
}
.footer-bottom .massclick {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.footer-bottom .massclick:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-links, .footer-contact {
    text-align: left;
  }
  footer.modern-footer {
    text-align: left;
  }
}

.footer-bottom span{
    color: #F3B94C;
}



.about-header {
  position: relative;
  font-family: var(--body-font, 'Poppins', sans-serif);
  overflow: hidden;
}

.about-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* Soft dark overlay */
  z-index: 1;
}

.about-header .container {
  position: relative;
  z-index: 2;
}

/* Responsive Text Sizes */
@media (max-width: 768px) {
  .about-header h1 {
    font-size: 1.9rem;
  }
  .about-header p {
    font-size: 1rem;
  }
}


#our-legacy {
  font-family: var(--body-font, 'Poppins', sans-serif);
}

#our-legacy img {
  max-height: 700px;
  object-fit: cover;
}

@media (max-width: 768px) {
  #our-legacy h2 {
    font-size: 1.6rem;
  }
  #our-legacy p {
    font-size: 1rem;
  }
  #our-legacy img {
    max-height: 700px;
  }
}

.mission-vision-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  font-family: var(--body-font);
}

.mission-card {
  background: #fff;
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(197,138,62,0.3);
}

.mission-card p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.05rem;
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

.fade-in-left { animation: fadeInLeft 1s ease forwards; }
.fade-in-right { animation: fadeInRight 1s ease forwards; }

.gen-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #f8b400;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nadi-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.nadi-img:hover {
  transform: scale(1.03);
}

.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(197, 138, 62, 0.3);
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-section {
  position: relative;
  overflow: hidden;
  font-family: var(--body-font);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.cta-section .container {
  z-index: 2;
}

.btn-call {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.4s ease;
}

.btn-call:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.naadi-about-section {
  background-color: var(--bg-light);
  font-family: var(--body-font);
}

.naadi-about-section img {
  max-width: 90%;
  height: auto;
  border: 4px solid var(--primary);
  transition: transform 0.4s ease;
}

.naadi-about-section img:hover {
  transform: scale(1.03);
}

.naadi-about-section p {
  color: var(--text-dark);
  line-height: 1.8;
}

.naadi-process-section {
  background: var(--bg-light);
  font-family: var(--body-font);
}

.process-card {
  background: #fff;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(197,138,62,0.5);
}

@media (max-width: 768px) {
  .process-card {
    margin-bottom: 1.5rem;
  }
}



/* Map Section */
.map-section {
  background: var(--bg-light);
  padding: 60px 0;
}

.map-section h2 {
  font-family: var(--heading-font);
  color: var(--secondary);
}

.map-section p {
  font-size: 1rem;
  color: var(--text-dark);
}

.map-section iframe {
  width: 100%;
  height: auto;
  min-height: 400px;
  border: none;
  display: block;
  border-radius: 12px;
}

.ratio{
  height: 400px;
}

@media (max-width: 768px) {
  .map-section iframe {
    min-height: 300px;
  }
  .ratio{
  height: 300px;
}
}


.book-contact-section {
  background-color: var(--bg-light);
}

.contact-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-card p {
  font-size: 1rem;
  color: var(--text-dark);
}

.branch-card {
  transition: all 0.4s ease;
  border: 2px solid rgba(197, 138, 62, 0.1);
  background-color: #fff;
}

.branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-color: var(--accent);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.bg-gradient-gold {
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.bg-gradient-dark {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Different border styles for each card */
.card-style-1 { border-left: 5px solid var(--primary); }
.card-style-2 { border-top: 5px solid var(--accent); }
.card-style-3 { border-right: 5px solid var(--secondary); }
.card-style-4 { border-bottom: 5px solid var(--accent); }

/* Make all cards same height */
.branch-card, .qr-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  text-align: left;
}

@media (max-width: 768px) {
  .branch-card { text-align: center; }
}

.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;      /* Centers horizontally */
  justify-content: center;  /* Centers vertically */
  text-align: center;
  background: #fff8f0;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease-in-out;
}

.qr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.qr-card img {
  display: block;
  margin: 0 auto 15px auto; /* Centers image horizontally and adds spacing */
  width: 230px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.icon-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branch-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Theme Variants */
.branch-card.gold .icon-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.branch-card.dark .icon-wrapper {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Icons */
.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* QR Image */
.qr-img {
  display: block;
  margin: 0 auto 15px auto;
  width: 230px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* Card Titles */
.branch-card h5 {
  color: var(--secondary);
  font-weight: 700;
}

.about-gallery {
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* 🌟 Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Button Common Style */
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Floating Icons */
.float-icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

/* Specific Colors (Optional) */
.call-btn {
  background-color: transparent; /* WhatsApp green */
}

.whatsapp-btn {
  background-color: transparent; /* iOS blue for call */
}

/* 🌬️ Air Floating Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* 📱 Mobile Responsive */
@media (max-width: 576px) {
  .floating-buttons {
    right: 12px;
    bottom: 15px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-icon {
    width: 48px;
    height: 48px;
  }
}


.temple-image {
  position: relative;
}

.temple-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(107, 59, 30, 0.7);
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: 0.4s ease;
}

.temple-image:hover .temple-overlay {
  opacity: 1;
}

.btn-booknow {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  border: none;
  transition: 0.3s ease;
}

.btn-booknow:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: #fff;
}


/* 🌿 Experience Section */
.experience-marquee {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: var(--text-light);
  padding: 15px 0;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  box-shadow: inset 0 0 10px rgba(243, 185, 76, 0.3);
}

/* 🌿 Wrapper for moving text */
.marquee-wrapper {
  position: relative;
  display: flex;
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(243, 185, 76, 0.6);
  height: 30px;
}

/* 🌿 Text Style */
.marquee-text {
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #fff3e0, var(--accent), #fff3e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
 animation: scrollLoop 35s linear infinite;  /* ⏳ slower speed (was 15s) */
}

/* 🌿 Continuous Scrolling Animation */
@keyframes scrollLoop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 🌿 Hover Glow Effect */
.experience-marquee:hover .marquee-text {
  filter: drop-shadow(0 0 8px var(--accent));
  opacity: 0.9;
}


/* 🌿 Responsive speeds */
@media (max-width: 992px) {
  .marquee-wrapper {
    font-size: 1rem;
  }
  .marquee-text {
    animation-duration: 30s; /* slightly faster on tablet */
  }
}

@media (max-width: 768px) {
  .marquee-wrapper {
    font-size: 0.95rem;
  }
  .marquee-text {
    animation-duration: 25s; /* faster on mid-size mobile */
  }
}

@media (max-width: 480px) {
  .marquee-wrapper {
    font-size: 0.85rem;
  }
  .marquee-text {
    animation-duration: 18s; /* faster for small phones */
  }
}

.experience-marquee {
  background: #fff8f0;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.marquee-wrapper {
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  animation: scrollLoop 40s linear infinite;
}

/* Animation keyframes */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 🌿 Responsive Speed Adjustments */
@media (max-width: 992px) {
  .marquee-track {
    animation-duration: 30s;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .marquee-track {
    animation-duration: 25s;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .marquee-track {
    animation-duration: 18s;
    font-size: 0.9rem;
  }
}

.suga-brahma-section {
  background-color: #fff8f0;
  position: relative;
  overflow: hidden;
}

.suga-image-wrapper {
  position: relative;
  display: inline-block;
}

.suga-image-wrapper img{
  width: 300px;
}
.divine-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: divinePulse 3s infinite ease-in-out;
  border-radius: 50%;
  z-index: 0;
}

@keyframes divinePulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
}

/* 🕉️ Responsive */
@media (max-width: 768px) {
  .suga-brahma-section {
    text-align: center;
  }
  .suga-brahma-section img {
    max-width: 80%;
  }
}

.naadi-astrologers {
  background: linear-gradient(to bottom, #fffdf5, #f9f5ea);
}

.reader-card {
  background: #fff;
  border: 2px solid #f1e6c1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.reader-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid var(--secondary);
}

.lang {
  color: var(--secondary);
  font-weight: 500;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .reader-img {
    height: 500px;
  }
}

.about-gallery-auto {
  background: linear-gradient(to bottom, #fffdf5, #f9f5ea);
  overflow: hidden;
  position: relative;
}

.scroll-gallery {
  display: flex;
  width: 200%;
  animation: scrollGallery 80s linear infinite;
}

.scroll-content {
  display: flex;
  gap: 20px;
}

.scroll-content a img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #f1e6c1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-content a img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Animation */
@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 🌿 Responsive */
@media (max-width: 768px) {
  .scroll-content a img {
    width: 220px;
    height: 160px;
  }
  .scroll-gallery {
    animation-duration: 20s; /* slightly slower for tablets */
  }
}

@media (max-width: 480px) {
  .scroll-content a img {
    width: 180px;
    height: 130px;
  }
  .scroll-gallery {
    animation-duration: 3s; /* slower on mobile for smooth view */
  }
}

/* 🌿 Auto Scroll Chapters */
.scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.scroll-content {
  display: flex;
  animation: scrollChapters 60s linear infinite;
}

.chapter-track {
  display: flex;
  gap: 20px;
}

.chapter-card {
  flex: 0 0 auto;
  width: 250px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s;
}

.chapter-card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
}

.chapter-card h5 {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  margin-top: 10px;
}

.chapter-card:hover {
  transform: scale(1.05);
}

/* 🌿 Animation Keyframes */
@keyframes scrollChapters {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
  .chapter-card {
    width: 200px;
    padding: 10px;
  }
  .chapter-card img {
    height: 140px;
  }
  .scroll-contents {
    animation-duration: 4s; /* faster on mobile */
  }
}

@media (max-width: 480px) {
  .chapter-card {
    width: 160px;
  }
  .chapter-card img {
    height: 120px;
  }
  .scroll-content {
    animation-duration: 5s; /* faster on small screens */
  }
}

/* 🌟 Naadi Card New Design */
.naadi-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.naadi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* 🕉️ Image Styling */
.naadi-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: 180px;
}

.naadi-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.naadi-card:hover .naadi-img-wrap img {
  transform: scale(1.08);
}

/* 🪶 Text Styling */
.naadi-card h5 {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #3b2f1e;
  font-weight: 600;
}

.naadi-card p {
  font-size: 0.9rem;
  color: #6c6c6c;
}

/* 🌸 Subtle Gradient Border Glow */
.naadi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #d4af37, #b1862c, #f7d97e);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.naadi-card:hover::before {
  opacity: 1;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .naadi-img-wrap {
    height: 150px;
  }
  .naadi-card h5 {
    font-size: 1rem;
  }
  .naadi-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .naadi-img-wrap {
    height: 130px;
  }
}

/* 🌐 Languages Section */
#languages {
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

#languages h2 {
  font-weight: 700;
  color: #222;
  font-size: 1.8rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 1s ease-out forwards;
}

/* 🔠 Language Links */
.languages-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 1.1rem;
  line-height: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

.languages-list a {
  text-decoration: none;
  color: #555;
  padding: 8px 14px;
  border-radius: 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover and Active States */
.languages-list a:hover {
  color: #fff;
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(43, 140, 214, 0.3);
}

.languages-list a:active,
.languages-list a.active {
  color: #fff;
  background-color: #1e6fb0;
  border-color: #1e6fb0;
}

/* ✨ Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive */
@media (max-width: 576px) {
  #languages h2 {
    font-size: 1.5rem;
  }
  .languages-list {
    font-size: 1rem;
    gap: 10px;
  }
  .languages-list a {
    padding: 6px 12px;
  }
}

.divine-scroll-gallery {
  background: #fffef9;
  position: relative;
  overflow: hidden;
}

.scroll-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  gap: 20px;
  animation: scrollGallery 40s linear infinite;
}

.scroll-track a img {
  width: 300px;
  height: 200px;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.scroll-track a img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Auto Scroll Animation */
@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hover pause */
.scroll-wrapper:hover .scroll-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .scroll-track a img {
    width: 220px;
    height: 150px;
  }
  .scroll-track {
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .scroll-track a img {
    width: 180px;
    height: 130px;
  }
  .scroll-track {
    animation-duration: 18s;
  }
}

.chapter-slider {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  cursor: grab;
  scroll-behavior: smooth;
  user-select: none;
  padding: 10px 0;
}

.chapter-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

.chapter-track {
  display: flex;
  gap: 20px;
  animation: scrollX 40s linear infinite;
}

.chapter-card {
  flex: 0 0 auto;
  width: 230px;
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;              /* prevents text overflow */
    white-space: normal;           /* allows line wrapping */
      flex-direction: column;
  justify-content: flex-start;
  min-height: 280px;             /* consistent height for all cards */
}

.chapter-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 10px;
}

.chapter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.chapter-card.active {
  border: 2px solid var(--accent);
}

@keyframes scrollX {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 991px) {
  .chapter-card { width: 45%; }
}
@media (max-width: 576px) {
  .chapter-card { width: 80%; margin: auto; }
}

#nadi-steps {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* Floating glowing circles */
.animated-bg::before,
.animated-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent 70%);
  animation: float 8s infinite ease-in-out alternate;
}
.animated-bg::before {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 20%;
}
.animated-bg::after {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: 15%;
  animation-delay: 2s;
}
@keyframes float {
  0% { transform: scale(1) translateY(0); opacity: 0.8; }
  100% { transform: scale(1.2) translateY(-30px); opacity: 1; }
}

/* Step Card Styling */
.step-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  color: #333;
}
.step-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Uniform Image Size */
.step-card img {
  width: 100%;
  height: 350px;           /* fixed height for all images */
  object-fit: cover;       /* crop edges evenly without distortion */
  border-radius: 0.75rem;
  transition: transform 0.4s ease;
}
.step-card:hover img {
  transform: scale(1.05);
}

/* Step Number Badge - Top Position */
.step-number {
  position: absolute;
  top: 10px;                     /* place it clearly at the top */
  left: 10px;                    /* align to top-left corner */
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
  z-index: 2;
}


/* Mobile & Tablet */
@media (max-width: 992px) {
  .step-card img { height: auto; }
}
@media (max-width: 576px) {
  .step-card img { height: auto; }
  .step-card { margin-bottom: 20px; }
}


#languages {
  background: linear-gradient(135deg, #fff8e5, #f3b94c20);
  font-family: 'Poppins', sans-serif;
}

/* Center Google Translate Dropdown */
.translate-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
#google_translate_element select {
  padding: 8px 14px;
  border-radius: 25px;
  border: 2px solid #f3b94c;
  background-color: #fff;
  font-weight: 600;
  font-size: 15px;
}

/* Info Scrolling Text */
.scrolling-text {
  white-space: nowrap;
  overflow: hidden;
  color: #6b3b1e;
  font-size: 1rem;
  font-weight: 600;
  animation: scrollText 25s linear infinite;
}
@keyframes scrollText {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* 🌐 Language Pills */
.manual-langs {
  display: flex;
  gap: 10px;
}
.lang-pill {
  display: inline-block;
  margin: 5px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid #f3b94c;
  background: #fff9ec;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
  user-select: none;
}
.lang-pill:hover {
  background: #f3b94c;
  color: #fff;
  box-shadow: 0 0 10px rgba(243, 185, 76, 0.5);
  transform: scale(1.05);
}

/* 🌀 Auto-moving Wrapper */
.lang-scroll-wrapper {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  cursor: grab;
}
.lang-scroll {
  display: flex;
  width: max-content;
  animation: moveLangs 45s linear infinite;
}
@keyframes moveLangs {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Pause animation on hover or drag */
.lang-scroll.paused {
  animation-play-state: paused;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .lang-pill {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
  .scrolling-text {
    font-size: 0.9rem;
    animation-duration: 35s;
  }
}

.branch-card {
  background: #fff;
  transition: 0.3s ease;
  border: 2px solid transparent;
}
.branch-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.branch-card.gold .icon-wrapper {
  background: linear-gradient(135deg, #f3b94c, #c58a3e);
}
.branch-card.dark .icon-wrapper {
  background: linear-gradient(135deg, #6b3b1e, #2b1a0d);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-img {
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  border: 2px solid #f3b94c80;
}

.payment-details p {
  margin: 3px 0;
  font-size: 0.9rem;
}

.payment-details b {
  color: var(--secondary);
}


.online-services {
  background: linear-gradient(135deg, #fff8e1, #fffdf5);
  position: relative;
  overflow: hidden;
}

.online-services h2 {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card {
  background: #fff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 10px 25px rgba(243, 185, 76, 0.25);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.service-card:hover .icon-circle {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .service-card {
    padding: 1.2rem;
  }
  .icon-circle {
    width: 60px;
    height: 60px;
  }
}
