body {
      margin: 0;
      font-family: "Georgia", serif;
      background: #fdf6ec;
      color: #3a1d0c;
    }

    /* NAVBAR */
    /* Pandit Photo Circle */
/* Header Main */
.top-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;

  background: linear-gradient(
    to right,
    rgba(90, 20, 10, 0.78),
    rgba(200, 120, 20, 0.68)
  );

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);

  padding: 10px 18px;
}

/* Container */
.header-container {
  max-width: 1200px;  /* desktop max width */
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 15px;   /* mobile में scroll कम करने के लिए */
}

/* Pandit Photo - 100px */
.pandit-photo {
  width: 100px;       /* बड़ा कर दिया */
  height: 100px;
  border-radius: 50%;
  border: 3px solid gold;
  object-fit: cover;
  margin: 0;
  flex-shrink: ;      /* Flex में छोटा न हो */
}

/* Header Left */
.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;        /* Overflow रोकने के लिए */
  flex-shrink: 0;      /* Left container shrink न हो */
}

/* Mobile fix */
@media (max-width: 768px) {
  .pandit-photo {
    width: 80px;       /* mobile पर थोड़ा छोटा कर सकते हो */
    height: 80px;
  }
}

/* Phone */
.phone {
  font-size: 15px;
  white-space: nowrap;
}

/* Menu */
.header-menu {
  display: flex;
  gap: 22px;
}

.header-menu a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.header-menu a:hover {
  color: gold;
  transform: scale(1.05);
}

/* Buttons */
.header-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 9px 18px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

/* Call */
.call-btn {
  background: #ffb100;
  color: black;
}

.call-btn:hover {
  background: gold;
}

/* WhatsApp */
.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* ✅ PERFECT MOBILE FIX */
@media (max-width: 768px) {

  .header-container {
    flex-direction: column;
    gap: 8px;
  }

  .header-menu {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-left {
    justify-content: center;
  }

  .header-buttons {
    justify-content: center;
  }

  .pandit-photo {
    width: 45px;
    height: 45px;
  }

  .phone {
    font-size: 14px;
  }
}

    /* HERO SECTION */
  .hero {
  position: relative;
  margin: 0;
  width: 100%;
  min-height: 90vh;

  background: url("temple.webp") no-repeat center center/cover;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 50px 20px;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Hero Card */
.hero-content {
  position: relative;
  max-width: 700px;
  text-align: center;

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);

  padding: 45px 35px;
  border-radius: 25px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

/* Heading */
.hero-content h1 {
 
  font-weight: 800;
  color: #4a1c10;
  line-height: 1;
  margin-bottom: 18px;
}

/* Paragraph */
.hero-content p {
  font-size: 10px;
  color: #222;
  line-height: 1;
  margin-bottom: 28px;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: linear-gradient(to right, #1f8f45, #25d366);

  color: white;
  padding: 14px 28px;
  font-size: 17px;
  font-weight: bold;

  border-radius: 35px;
  text-decoration: none;

  transition: 0.3s;
}

.hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ✅ Mobile Perfect Fix */
@media (max-width: 768px) {

  .hero-content {
  width: min(90%, 750px);
  margin: auto;
}

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-btn {
    font-size: 15px;
    padding: 12px 20px;
  }
}

    /* ABOUT SECTION */
    .section {
      padding: 60px 20px;
      text-align: center;
    }

    .section h2 {
      font-size: 35px;
      margin-bottom: 10px;
    }

    .section p {
      font-size: 18px;
      max-width: 700px;
      margin: auto;
    }

    /* SERVICES CARDS */
    .cards {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .card {
      background: white;
      padding: 20px;
      border-radius: 18px;
      border: 3px solid #d4a24c;
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
      transition: 0.3s;
    }

    .card:hover {
      transform: scale(1.05);
    }

    .card img {
      width: 80px;
      margin-bottom: 10px;
    }

    .card h3 {
      font-size: 20px;
      margin: 10px 0;
      color: #5a1e0c;
    }

    /* CONTACT BUTTON */
    .contact-btn {
      margin-top: 40px;
      display: inline-block;
      padding: 14px 30px;
      background: #5a1e0c;
      color: white;
      border-radius: 12px;
      font-size: 18px;
      text-decoration: none;
      font-weight: bold;
    }

    /* FOOTER */
    footer {
      background: #2b0d05;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 50px;
    }
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
.header-container {
  width: 100%;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .header-menu {
    display: none;
  }
}
.header-buttons {
  flex-wrap: wrap;
}
.btn {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .pandit-photo {
    width: 65px;
    height: 65px;
  }
}
/* ===========================
   ✅ SLIDER 1 (Hero Portrait Slider)
=========================== */

.slider-container {
  width: 100%;
  max-width: 380px;     /* ✅ Portrait Width */
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 22px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Slider Box */
.slider {
  width: 100%;
  height: 520px;        /* ✅ Portrait Height */
  position: relative;
}

/* Slides */
.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;

  position: absolute;
  top: 0;
  left: 0;

  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

/* Active Slide */
.slide.active {
  opacity: 1;
}

/* ===========================
   ✅ Buttons (Prev / Next)
=========================== */

.prev1,
.next1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(0,0,0,0.55);
  color: white;

  border: none;
  font-size: 26px;
  font-weight: bold;

  padding: 12px 16px;
  cursor: pointer;

  border-radius: 50%;
  transition: 0.3s;
}

.prev1:hover,
.next1:hover {
  background: rgba(255, 215, 0, 0.9);
  color: black;
}

/* Button Position */
.prev1 {
  left: 15px;
}

.next1 {
  right: 15px;
}

/* ===========================
   ✅ Dots Styling
=========================== */

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;

  margin: 0 6px;
  border-radius: 50%;

  background: rgba(255,255,255,0.6);
  cursor: pointer;

  transition: 0.3s;
}

/* Active Dot */
.dot.active {
  background: gold;
  transform: scale(1.3);
}

/* ===========================
   ✅ Mobile Responsive Fix
=========================== */

@media (max-width: 768px) {

  .slider-container {
    max-width: 90%;     /* मोबाइल में full fit */
  }

  .slider {
    height: 420px;      /* मोबाइल में थोड़ा छोटा */
  }

  .prev1,
  .next1 {
    font-size: 20px;
    padding: 8px 12px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}
.prices {
  position: relative;
  max-width: 700px;
  text-align: center;

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);

  padding: 45px 35px;
  border-radius: 25px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  
      border-radius: 18px;
      border: 3px solid #d4a24c;
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
      transition: 0.3s;
      margin-top: 40px;
      
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
}

.panditji {
  height: 350px;
  width : 400px;
  border-radius: 10%;
  border: 3px solid gold;
  object-fit: cover;
}
/* ===========================
   ✅ SLIDER 2 CAROUSEL
=========================== */

.photo-slider {
  width: 100%;
  max-width: 850px;
  margin: 50px auto;
  text-align: center;
}



/* Carousel Box */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

/* Track */
.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Images */
.carousel-img {
  width: 100%;
  flex-shrink: 0;
  height: 400px;
  object-fit: cover;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(0,0,0,0.55);
  color: white;

  border: none;
  font-size: 24px;
  padding: 10px 14px;

  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: gold;
  color: black;
}

/* Button Position */
.prev2 {
  left: 15px;
}

.next2 {
  right: 15px;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  text-align: center;
}

.carousel-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;

  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}

.carousel-dots .active-dot {
  background: gold;
  transform: scale(1.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .carousel-img {
    height: 230px;
  }

  .carousel-btn {
    font-size: 18px;
    padding: 7px 10px;
  }
}
.benefits-list {
  max-width: 700px;
  margin: 25px auto;
  text-align: left;
  font-size: 18px;
  line-height: 1.8;
}

.benefits-list li {
  margin: 10px 0;
  padding-left: 10px;
}