:root {
  --yellow-soft: #EEDB62;
  --golden-orange: #F5AF42;
  --deep-red: #C0332E;
  --saffron-soft: #F77B40;
  --text-dark: #2b2b2b;
  --white: #ffffff;
}
section,
h3[id] {
  scroll-margin-top: 90px; /* adjust to header height */
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: 'Samarkan';
  src: url('./assets/fonts/CinzelDecorative-Regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text-dark);

  background-image: url("assets/images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); /* light veil */
  z-index: -1;
}
section {
  position: relative;
  z-index: 1;
}

.header {
  position: sticky;
  top: 0;
  background: var(--deep-red);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 12px 20px;
  z-index: 1000;
} /* ALWAYS stay above page content */
}
section {
  padding: 40px 0;   /* reduced from large spacing */
}
/* ===== SECTION HEADER STYLE ===== */

/*section > h2 {
  background: linear-gradient(to right, #1a1a1a, #000000);
  color: #ffffff;
  padding: 12px 20px;
  margin: 0 0 14px 0;   
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}*/
/* ===== ELEGANT SECTION HEADERS ===== */

section > h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--deep-red);
  margin: 0 0 10px 0;
  position: relative;
  padding-bottom: 10px;
}

section p:first-child {
  margin-top: 0;
}
/*section:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}*/

.nav a {
  color: white;
  margin: 0 8px;
  text-decoration: none;
}
.nav {
  margin: 0 auto;
}
.cta-small {
  background: #25d366;
  padding: 6px 10px;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  display: none;
}



section {
  padding: 24px 20px;   /* MUCH tighter */
  max-width: 1000px;
  margin: auto;
}

.hero h1 {
  background: none;
  color: var(--text-dark);
  padding: 0;
}
.hero {
  background: linear-gradient(
    to bottom,
    var(--yellow-soft),
    var(--golden-orange)
  );
  color: var(--text-dark);
}

/* Inner layout */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: auto;
}

/* Left circular placeholder */
.hero-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 3px solid var(--golden-orange);
  flex-shrink: 0;
}
/* Right content */
.hero-content {
  flex: 1;
}
.hero-caption {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #333;
}

/* Wingdings symbol */
.wingding {
  font-family: Wingdings, "Zapf Dingbats", sans-serif;
  font-size: 20px;
  margin: 0 6px;
  vertical-align: middle;
}

.hero-content h1 {
  font-family: 'Samarkan', serif;
  font-size: 70px;     /* Samarkan needs more breathing room */
  font-weight: normal;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
    letter-spacing: 1.5px;
  }
}

/* ===== SECTION SEPARATOR ===== */

.section-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 16px;
}

.separator-line {
  flex: 1;
  border-top: 1.5px dotted var(--golden-orange);
  max-width: 120px;
}

.separator-symbol {
  font-family: Wingdings, "Zapf Dingbats", sans-serif;
  font-size: 20px;
  color: var(--golden-orange);
  margin: 0 12px;
  line-height: 1;
}

/* Buttons alignment */
.hero-content .buttons {
  margin-top: 20px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/2507657.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 420px;
  opacity: 0.06;
  pointer-events: none;
}

.buttons {
  margin-top: 20px;
}

.btn {
  padding: 12px 18px;
  margin: 5px;
  border-radius: 4px;
  text-decoration: none;
}

.primary {
  background: var(--deep-red);
  color: var(--white);
}

.secondary {
  border: 2px solid var(--saffron-soft);
  color: var(--saffron-soft);
}
.primary:hover {
  background: var(--saffron-soft);
}

.secondary:hover {
  background: var(--saffron-soft);
  color: var(--white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}
/* ===== WELCOME SECTION LAYOUT ===== */

.welcome-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* ===== WELCOME SECTION LAYOUT ===== */

.welcome-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.welcome-content {
  flex: 1;
}

.welcome-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;

  border: 3px solid var(--golden-orange);

  /* Soft spiritual glow */
  box-shadow:
    0 0 20px rgba(245, 175, 66, 0.35),
    0 0 40px rgba(245, 175, 66, 0.2);
}

/* ✅ IMAGE INSIDE WELCOME CIRCLE */
.welcome-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
/* ===== WELCOME PREFACE (SIMPLE & SOLID) ===== */

.welcome-preface {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

/* Zodiac */
.preface-icon {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(245, 175, 66, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.preface-icon img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  opacity: 0.9;
}

/* Vertical line */
.preface-line {
  width: 3px;
  background: var(--golden-orange);
  flex-shrink: 0;
}

/* Text */
.preface-text p {
  margin: 0;
  font-size: 15.5px;
  font-style: italic;
  line-height: 1.7;
  color: #444;
}
@media (max-width: 768px) {
  .welcome-preface {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .preface-line {
    width: 40px;
    height: 2px;
  }
}



@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.preface-icon img {
  animation: slowRotate 60s linear infinite;
}

.welcome-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Name */
.welcome-name {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Qualifications */
.welcome-qualifications {
  margin-top: 6px;
  font-size: 13px;
  font-style: italic;
  color: #555;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .welcome-name {
    font-size: 15px;
  }

  .welcome-qualifications {
    font-size: 12.5px;
  }
}



.accordion {
  width: 100%;
  padding: 15px;
  margin-top: 10px;
  border: none;
  background: #e0cfc2;
  cursor: pointer;
  font-size: 16px;
}

.panel {
  display: none;
  background: white;
  padding: 15px;
}

.two-col {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.review {
  background: white;
  padding: 15px;
  margin: 10px 0;
}

.footer {
   background:var(--deep-red);
   color: var(--white);
  text-align: center;
  padding: 20px;
}
.review-box {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.review-box textarea {
  width: 100%;
  height: 80px;
  margin-top: 10px;
  padding: 10px;
  font-family: Arial, sans-serif;
}

.review-box button {
  margin-top: 10px;
  padding: 10px 15px;
  background: #8b0000;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.stars span {
  font-size: 26px;
  cursor: pointer;
  color: #ccc;
}

.stars span.active {
  color: gold;
}

#reviewsList .review {
  background: #fff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 6px;
}
/* ===== SERVICES FLIP TILES ===== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 220px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Front & Back common */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Front side */
.card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-front h3 {
  margin-top: 15px;
}

/* Circle placeholder */
.circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245, 175, 66, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;

  overflow: hidden; /* 🔒 THIS FIXES EVERYTHING */

  box-shadow: 
    0 0 10px rgba(245, 175, 66, 0.35),
    0 0 20px rgba(245, 175, 66, 0.15);

  transition: box-shadow 0.4s ease;
}
.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.service-card:hover .circle {
  box-shadow: 
    0 0 14px rgba(245, 175, 66, 0.6),
    0 0 30px rgba(245, 175, 66, 0.3);
}
@keyframes glowPulse {
  0% {
    box-shadow: 
      0 0 10px rgba(245, 175, 66, 0.3),
      0 0 18px rgba(245, 175, 66, 0.15);
  }
  50% {
    box-shadow: 
      0 0 16px rgba(245, 175, 66, 0.6),
      0 0 28px rgba(245, 175, 66, 0.25);
  }
  100% {
    box-shadow: 
      0 0 10px rgba(245, 175, 66, 0.3),
      0 0 18px rgba(245, 175, 66, 0.15);
  }
}

.circle {
  animation: glowPulse 5s ease-in-out infinite;
}

/* Back side */
.card-back {
  transform: rotateY(180deg);
  text-align: left;

  background: rgba(245, 175, 66, 0.18); /* warm golden tint */
  backdrop-filter: blur(4px);

  color: #2b2b2b;
}

.card-back ul {
  width: 100%;
  padding-left: 20px;
  text-align: left;
}

.card-back li {
  margin-bottom: 6px;
  font-size: 14px;
}
/* ===== KUNDALI & MUHURTHA PANELS ===== */

.kundali-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.kundali-panel {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 28px;
  border-top: 2px solid var(--golden-orange);

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kundali-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(245, 175, 66, 0.25);
}

.kundali-panel h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 18px;
  color: var(--deep-red);
}

.kundali-panel ul {
  padding-left: 18px;
}

.kundali-panel li {
  margin-bottom: 8px;
  line-height: 1.6;
}
/* ===== REVEAL ANIMATION ===== */

/* Kundali: starts slightly UP, moves DOWN */
.reveal {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When active */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Muhurta: starts slightly DOWN, moves UP */
.reveal.delay {
  transform: translateY(20px);
  transition-delay: 0.25s;
}


.reveal.delay {
  transition-delay: 0.2s;
}
/* ===== KUNDALI & MUHURTA ALTERNATE MOTION ===== */

/* Kundali panel moves DOWN */
@keyframes moveDownSoft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(12px); }
  100% { transform: translateY(0); }
}

/* Muhurta panel moves UP */
@keyframes moveUpSoft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Apply animations */
.kundali-move-down {
  animation: moveDownSoft 6s ease-in-out infinite;
}

.kundali-move-up {
  animation: moveUpSoft 6s ease-in-out infinite;
  animation-delay: 6s; /* alternate */
}



/* ===== REMEDIES AUTO SCROLL ===== */

.remedy-scroll {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.remedy-track {
  display: flex;
  width: max-content;
  animation: scrollRemedies 30s linear infinite;
}

.remedy-card {
  min-width: 260px;
  margin-right: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Animation */
@keyframes scrollRemedies {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional but recommended) */
.remedy-scroll:hover .remedy-track {
  animation-play-state: paused;
}
/* ===== FEEDBACK SHOWCASE ===== */

.feedback-showcase {
  text-align: center;
  background: #faf7f2;
}

.feedback-viewport {
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto 0;
  position: relative;
}

.feedback-track {
  display: flex;
  width: max-content;
  animation: feedbackScroll 30s infinite;
}

.feedback-card {
  min-width: 320px;
  margin: 0 30px;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  animation: zoomIn 1s ease;
}

/* Rating stars */
.rating {
  font-size: 16px;
  color: gold;
  margin-bottom: 8px;
}

/* Line above feedback */
.feedback-card hr {
  width: 40%;
  border: none;
  border-top: 1.5px solid #8b0000;
  margin: 10px auto;
}

/* Feedback text */
.feedback-card p {
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
}

/* Author */
.author {
  margin-top: 12px;
  font-size: 13px;
  color: #555;
}

/* Horizontal scroll animation */
@keyframes feedbackScroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Zoom animation */
@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* ===== FEEDBACK AUTO SCROLL (STABLE VERSION) ===== */

.feedback-scroll-section {
  text-align: left;
 /* background: #faf7f2;*/
}

.feedback-scroll {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}

.feedback-track {
  display: flex;
  width: max-content;
  animation: feedbackScroll 40s linear infinite;
}

.feedback-card {
  min-width: 260px;        /* narrower */
  max-width: 280px;        /* prevents stretching */
  min-height: 220px;       /* adds vertical balance */
  margin: 0 20px;
  background: #ffffff;
  padding: 22px;
  border-radius: 10px;     /* slightly rounder looks softer */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


/* Pause on hover */
.feedback-scroll:hover .feedback-track {
  animation-play-state: paused;
}

/* Rating */
.rating {
  font-size: 18px;   /* slightly bigger, elegant */
  color: gold;
  margin-bottom: 6px;
}
/* Review name & location inputs */
.review-meta {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}

.review-meta input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.review-meta input:focus {
  outline: none;
  border-color: var(--golden-orange);
}
@media (max-width: 600px) {
  .review-meta {
    flex-direction: column;
  }
}


/* Line */
.feedback-card hr {
  width: 40%;
  border: none;
  border-top: 1.5px solid #8b0000;
  margin: 10px auto;
}

/* Italic feedback text */
.feedback-card p {
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
}

/* Author */
.author {
  margin-top: 12px;
  font-size: 13px;
  color: #555;
}

/* Scroll animation */
@keyframes feedbackScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.card,
.service-card,
.feedback-card,
.remedy-card {
  background: var(--white);
  border-top: 2px solid var(--golden-orange); /* thinner, refined */
  border-radius: 10px;
}
/*
.remedies {
  background: #fff8e1; 
}
.remedies {
  background: #fff8e1; 
}*/
.rating {
  color: var(--golden-orange);
}
.feedback-card hr {
  border-top: 1.5px solid var(--deep-red);
}
.nav a {
  color: var(--white);
}

.nav a:hover {
  color: var(--golden-orange);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(245,175,66,0.08), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(192,51,46,0.08), transparent 40%);
  z-index: -1;
}
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
}
/* ===== SHARE EXPERIENCE SECTION ===== */

.share-experience {
  text-align: center;
  padding: 40px 20px;
}

.experience-text {
  max-width: 680px;
  margin: 16px auto 24px;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  color: #444;
}
.experience-btn {
  padding: 12px 28px;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    var(--golden-orange),
    #f7c873
  );
  border: none;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.experience-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .experience-text {
    font-size: 15px;
    padding: 0 10px;
  }

  .experience-btn {
    width: 100%;
    max-width: 280px;
  }
}
/* ===== Floating WhatsApp Button ===== */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}


.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
