
/* ------------------- FONT IMPORT ------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500&family=Great+Vibes&display=swap');

/* ------------------- GLOBAL ------------------- */
body {
  font-family: 'Poppins', sans-serif; /* clean readable for body */
  background-color: #fdfaf6;
  overflow-x: hidden;
  color: #2c2c54;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif; /* elegant headings */
  font-weight: 600;
}

.highlight-text, .puja-item h3 {
  font-family: 'Great Vibes', cursive; /* spiritual cursive style */
  color: #bfa94c; /* golden divine tone */
  text-align: center;
}

/* Global reset & body */
/*body {
  font-family: 'Playfair Display', serif;
  background-color: #fff8e1; /* cream (spiritual) *//*
  overflow-x: hidden;
  color: #2c2c54;
}*/

/* Top bar */
.top-bar {
  background: linear-gradient(to right, #e65100, #ff6f00); /* saffron gradient */
  color: #fff;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
}
.top-bar a {
  color: #fffde7;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.top-bar a:hover { color: #ffd54f; transform: translateY(-1px); }
@media (max-width: 992px) {
  .top-bar { display: none !important; }
}


.navbar {
  background: linear-gradient(to right, #2c2c54, #1b1b38);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.8rem 1rem;
}
.navbar-brand span {
  color: #ffd54f; 
  font-size: 22px;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(255,213,79,0.18);
}
.nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 8px 12px;
  position: relative;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.nav-link:hover {
  color: #ffd54f !important;
  text-shadow: 0 0 8px rgba(255,213,79,0.25);
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 50%;
  bottom: -4px;
  background: #ffd54f;
  transition: width 0.28s ease;
  transform: translateX(-50%);
}
.nav-link:hover::after { width: 100%; }


.dropdown-menu {
  background: #2c2c54;
  border: none;
  border-radius: 0 0 10px 10px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.dropdown-item {
  color: #fff;
  padding: 8px 16px;
  transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-item:hover {
  background: #ffd54f;
  color: #000;
}


.btn-call {
  background: #ffd54f;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(255,213,79,0.12);
}
.btn-call:hover { background: #fbc02d; color: #fff; transform: translateY(-2px); }
.btn-email {
  border: 2px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 30px;
}
.btn-email:hover { background: #fff; color: #000; }


@media (max-width: 992px) {
  .navbar-collapse { text-align: center; }
  .navbar-nav { gap: 10px; }
  .navbar .d-flex {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  .navbar-brand { margin: auto; text-align: center; }
  .dropdown-menu { text-align: center; }
}


.footer-section {
  background: linear-gradient(to right, #2c2c54, #12121a);
  font-size: 0.95rem;
  color: #fff;
  padding: 40px 0;
}
.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffd54f;
}
.footer-desc {
  color: #efe7d6;
  font-size: 0.9rem;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: #dcd6ce;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-links a:hover { color: #ffd54f; padding-left: 6px; transform: translateX(3px); }
.footer-social a { color: #fff; font-size: 1.2rem; transition: transform 0.2s ease; }
.footer-social a:hover { color: #ffd54f; transform: scale(1.15); }

@media (max-width: 992px) {
  .contact-buttons {
    width: 100%;
    flex-direction: row !important;
    justify-content: center;
  }
}


.slider-img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center;
  position: relative;
  transition: transform 0.6s ease;
}
.slider-img:hover { transform: scale(1.02); }


.carousel-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.42);
  z-index: 1;
}
.carousel-caption { z-index: 2; }


@media (min-width: 576px) { .slider-img { height: 55vh; } }
@media (min-width: 768px) { .slider-img { height: 65vh; } }
@media (min-width: 992px) { .slider-img { height: 75vh; } }
@media (min-width: 1200px) { .slider-img { height: 85vh; } }
@media (min-width: 1400px) { .slider-img { height: 90vh; } }
@media (min-width: 1600px) { .slider-img { height: 100vh; } }


.carousel-caption h2,
.carousel-caption p {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}


@media (max-width: 768px) {
  .carousel-caption h2 { font-size: 1.8rem; }
  .carousel-caption p { font-size: 1rem; }
}


.footer-section { background: #1e1e2f; color: #fff; }
.footer-title { font-weight: 600; font-size: 1.2rem; color: #ffd54f; }
.footer-title::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #ffd54f;
  display: block;
  margin-top: 5px;
}


.slider-wrapper { margin-top: 80px; position: relative; }

.slider-img { width: 100%; height: 50vh; object-fit: cover; object-position: center; }

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.carousel-caption h2,
.carousel-caption p {
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  margin-bottom: 15px;
}


.carousel-caption .btn {
  margin: 5px 10px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.carousel-caption .btn-primary {
  background: #ffd54f; 
  border: none;
  color: #000;
}
.carousel-caption .btn-primary:hover {
  background: #f1c40f;
  color: #fff;
  transform: scale(1.05);
}
.carousel-caption .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}
.carousel-caption .btn-outline-light:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}


@media (min-width: 576px) { .slider-img { height: 55vh; } }
@media (min-width: 768px) { .slider-img { height: 65vh; } }
@media (min-width: 992px) { .slider-img { height: 75vh; } }
@media (min-width: 1200px) { .slider-img { height: 85vh; } }
@media (min-width: 1400px) { .slider-img { height: 90vh; } }
@media (min-width: 1600px) { .slider-img { height: 100vh; } }


@media (max-width: 575px) {
  .carousel-caption h2 { font-size: 1.4rem; }
  .carousel-caption p { font-size: 0.85rem; }
  .carousel-caption .btn { font-size: 0.75rem; padding: 6px 14px; }
}
@media (min-width: 576px) and (max-width: 767px) {
  .carousel-caption h2 { font-size: 1.8rem; }
  .carousel-caption p { font-size: 1rem; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .carousel-caption h2 { font-size: 2.2rem; }
  .carousel-caption p { font-size: 1.1rem; }
}
@media (min-width: 992px) {
  .carousel-caption h2 { font-size: 2.6rem; }
  .carousel-caption p { font-size: 1.2rem; }
}

.footer-links a { color: #ddd; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: #ffd54f; transform: translateX(5px); }


.footer-social .social-icon { font-size: 1.5rem; color: #ddd; transition: 0.3s; }
.footer-social .social-icon:hover { color: #ffd54f; transform: scale(1.2); }

@media (max-width: 768px) {
  .footer-section .row { text-align: center; }
  .footer-social { justify-content: center; }
}


.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}


.btn-animate {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-animate::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.12);
  transition: 0.3s;
  border-radius: 5px;
}
.btn-animate:hover::after { height: 100%; }
.btn-animate:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.card-text::-webkit-scrollbar { width: 5px; }
.card-text::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 5px; }


h1, h3 { font-family: 'Poppins', sans-serif; }


.btn-primary {
  background: #0069d9;
  border: none;
  transition: background 0.3s ease;
}
.btn-primary:hover { background: #0056b3; }


.pooja-card-link { display: block; }
.pooja-card-link:hover { text-decoration: none; }


.hover-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.12); }


.card-img-top img { transition: transform 0.5s ease; }
.pooja-card-link:hover .card-img-top img { transform: scale(1.05); }


.card-title { font-size: 1.25rem; }
.card-text { font-size: 0.95rem; }


.btn-animate { transition: background-color 0.3s, transform 0.3s; }
.btn-animate:hover { transform: translateY(-2px); }


@media (max-width: 767px) {
  .pooja-card-link { display: block; width: 100%; }
}


h1, h3 { font-family: 'Poppins', sans-serif; }


.btn-primary { background-color: #0069d9; border: none; transition: background 0.3s ease; }
.btn-primary:hover { background-color: #0056b3; }


.card { border-radius: 1rem; }


@media (max-width: 991px) { .card iframe { min-height: 300px; } }


h1, h3, h4 { font-family: 'Poppins', sans-serif; }


.btn-primary { background: #007bff; border: none; border-radius: 50px; transition: transform 0.3s ease; }
.btn-success { border-radius: 50px; }
.btn-primary:hover { background: #0056b3; }


.bounce { animation: bounce 3s infinite; }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}


.card { border-radius: 10px; transition: transform 0.3s; }
.card:hover { transform: scale(1.03); }
.card { border-radius: 10px; transition: transform 0.3s ease; }
.card:hover { transform: scale(1.05); }


.img-clickable { cursor: pointer; transition: transform 0.3s ease; }
.img-clickable:hover { transform: scale(1.1); }


.gallery-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gallery-card:hover { transform: scale(1.05); box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15); }


@media (max-width: 576px) {
  .card-img-top, .ratio iframe { height: 200px !important; }
}


.main-heading {
  text-align: center;
  font-size: 3rem;
  color: #e65100; 
  margin-bottom: 50px;
  padding-bottom: 15px;
  display: inline-block;
  font-weight: 700;
}
.main-heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #ffd54f;
  margin: 10px auto 0;
  border-radius: 2px;
}
.main-heading::before {
  content: "✨ ";
  font-size: 1.5rem;
  color: #ffd54f;
}


.puja-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.puja-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  max-width: 300px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}
.puja-item:hover { transform: translateY(-6px); }
.puja-item img {
  width: 100%;
  border-radius: 8px;
  height: 180px;
  object-fit: cover;
  background-color: #f6f2ea;
  margin-bottom: 15px;
}
.puja-item h3 {
  font-size: 1.3rem;
  color: #2c2c54;
  margin-bottom: 10px;
}
.puja-item h3 a { text-decoration: none; color: inherit; }
.puja-item p {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #4b4b4b;
  text-align: justify;
}


@media (max-width: 768px) {
  .puja-container { flex-direction: column; align-items: center; }
  .puja-item { width: 90%; max-width: 520px; text-align: left; }
}


.fixed-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.fixed-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);

 background: linear-gradient(180deg,#25d366,#1da851);
   animation: bounce 2s infinite;
    transition: transform 0.3s ease;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}
.fixed-buttons .btn:hover { transform: scale(1.1); background: #333; }
.call-btn { background: linear-gradient(180deg,#e74c3c,#c43b2e); }
.whatsapp-btn { background: linear-gradient(180deg,#25d366,#1da851); }


.counter-section { background: #f8f9fa; padding: 40px 0; }
.counter-box { transition: transform 0.3s ease; }
.counter-box:hover { transform: translateY(-10px); }
.counter { font-size: 2.2rem; font-weight: 700; color: #bfa94c; }
.counter-box i { font-size: 3rem; color: #ff6f00; }
.counter-box p { font-size: 1.05rem; margin-top: 10px; color: #555; }


.about-us-section { background: #fff8e1; padding: 30px; }
.text-golden { color: #bfa94c; }
.about-us-section p { font-size: 1.05rem; color: #333; }
.about-us-section .btn-golden { background-color: #bfa94c; border: none; color: #1c1c1c; }
.about-us-section .btn-golden:hover { background-color: #a78f3c; color: #fff; }


.call-us-marquee {
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg,#ff6f00,#e65100);
  color: #fff;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

.marquee span {
  font-size: 1.05rem;
  display: inline-block;
  padding-right: 3rem;
}

.call-us-marquee a {
  text-decoration: underline;
  color: #fff;
  font-weight: 700;
}

@keyframes scroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


@media (max-width: 767px) {
  .marquee { animation: scroll 40s linear infinite; }
  .marquee span { font-size: 1rem; padding-right: 2rem; }
}



.video-call-section { background: #fff8e1; padding: 30px 0; }
.video-call-section p { font-size: 1rem; line-height: 1.7; font-weight: 500; color: #333; }
.video-wrapper { padding: 15px; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.08); background: #fff; }
.video-wrapper iframe { width: 100%; height: 350px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }

@media (max-width: 767px) {
  .video-wrapper { padding: 10px; }
  .video-wrapper iframe { height: 220px; }
  .video-call-section h2 { font-size: 1.8rem; }
  .video-call-section p { font-size: 1rem; }
  .btn-danger { font-size: 1.05rem; padding: 0.7rem 1.2rem; }
}


.kaalsarp-heading-section { background: linear-gradient(135deg, #1a237e, #283593); padding: 40px 0; color: #fff; }
.decorative-line { display:flex; align-items:center; justify-content:center; }
.line-left, .line-right { flex:1; border:0; height:2px; background-color:#bfa94c; }
.kaalsarp-heading { font-family:'Georgia', serif; font-size:3rem; color:#ffd54f; text-shadow:2px 2px 4px rgba(0,0,0,0.6); }
@media (max-width:767px) { .kaalsarp-heading{ font-size:2rem;} .decorative-line i{ font-size:2rem;} .kaalsarp-heading-section p{ font-size:1rem;} }


.accordion-section { background:#fff8e1; padding: 20px; }
.accordion-button { font-size: 1.1rem; color: #2c2c54; }
.accordion-body { font-size: 1rem; color: #333; }
.accordion-body ul { padding-left: 1.5rem; }


@media (max-width: 575px) {
  .slider-img { height: 40vh; }
  .carousel-caption h2 { font-size: 1.2rem; }
  .carousel-caption p { font-size: 0.8rem; }
  .main-heading { font-size: 1.6rem; }
  .puja-item { padding: 14px; max-width: 95%; }
  .counter { font-size: 1.6rem; }
  .fixed-buttons { right: 12px; bottom: 12px; }
}


@media (min-width: 576px) and (max-width: 767px) {
  .slider-img { height: 55vh; }
  .carousel-caption h2 { font-size: 1.6rem; }
  .carousel-caption p { font-size: 0.95rem; }
  .main-heading { font-size: 2rem; }
  .puja-item img { height: 170px; }
  .counter { font-size: 1.9rem; }
}


@media (min-width: 768px) and (max-width: 991px) {
  .slider-img { height: 65vh; }
  .carousel-caption h2 { font-size: 2.0rem; }
  .carousel-caption p { font-size: 1.05rem; }
  .main-heading { font-size: 2.4rem; }
  .puja-container { gap: 22px; }
  .video-wrapper iframe { height: 300px; }
}


@media (min-width: 992px) and (max-width: 1199px) {
  .slider-img { height: 75vh; }
  .carousel-caption h2 { font-size: 2.4rem; }
  .main-heading { font-size: 2.8rem; }
}


@media (min-width: 1200px) and (max-width: 1399px) {
  .slider-img { height: 85vh; }
  .carousel-caption h2 { font-size: 2.8rem; }
  .main-heading { font-size: 3rem; }
}


@media (min-width: 1400px) and (max-width: 1599px) {
  .slider-img { height: 90vh; }
  .carousel-caption h2 { font-size: 3rem; }
  .main-heading { font-size: 3.2rem; }
}


@media (min-width: 1600px) {
  .slider-img { height: 100vh; }
  .carousel-caption h2 { font-size: 3.4rem; }
  .main-heading { font-size: 3.6rem; }
}


@media (max-width: 768px) {
  h1,h2,h3 { font-size: 95%; }
  p { font-size: 0.95rem; }
  .btn { font-size: 0.95rem; }
}
@media (max-width: 400px) {
  h1,h2,h3 { font-size: 88%; }
  p { font-size: 0.85rem; }
  .btn { font-size: 0.85rem; padding: 6px 12px; }
}


.btn-golden {
    background: linear-gradient(45deg, #FFD700, #FFC107);
    color: #000;
    font-weight: 600;
    font-size: 1rem; 
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}


.btn-golden:hover {
    background: linear-gradient(45deg, #FFC107, #FFD700);
    color: #ba1414;
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}


@media (max-width: 576px) {
    .btn-golden {
        width: 100%;
        display: block;
    }
}
.feature-section {
  background: linear-gradient(to right, #f9f9f9, #f1f1f1); 
  border-radius: 15px;
}


.feature-box {
  padding: 15px;
  background: #ffffff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease;
}


.feature-box:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}


.feature-icon {
  max-width: 90%;
  max-height: 90%;
}
.container-fluid i:hover{
color: #1da851;
transition: 1.5s;
width: 100%;
font-size: 33px;
}


  .img-card {
      overflow: hidden;
      border-radius: 15px;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .img-card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    .section-heading {
      font-weight: 700;
      text-align: center;
      margin-bottom: 30px;
      color: #2c3e50;
    }
    .img-card {
  height: 350px;      
  width: 100%;
  object-fit: cover;   
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.img-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.btn-close-custom {
  position: absolute;
  top: 20px;
  right: -65px; 
  background-color: red;
  color: white;
  border: none;
  font-size: 32px;
  font-weight: bold;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 9999;
}

.btn-close-custom:hover {
  background-color: darkred;
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .btn-close-custom {
    right: 10px;   
    top: 10px;
  }
}
.kundli-puja-info {
    background-color: #fff3e0; 
    color: #333;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 20px auto;
    font-family: 'Noto Sans', sans-serif;
}

.kundli-puja-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #e65100; 
}

.kundli-puja-info p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.kundli-puja-info .call-link {
    color: #d84315;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .kundli-puja-info {
        padding: 15px;
        border-radius: 10px;
    }

    .kundli-puja-info h2 {
        font-size: 1.4rem;
    }

    .kundli-puja-info p {
        font-size: 1rem;
    }
}


