/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  color:#333;
  position: relative;
  font-family:'Poppins',sans-serif;
  background: transparent;
}


/* ================= VEDIC MOVING BACKGROUND ================= */
body::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:url('uploads/consultations/vedic.jpeg') center/cover no-repeat;
  opacity:0.08;
  z-index:-1;
  animation:vedicMove 60s linear infinite;
}

@keyframes vedicMove{
  0%{transform:scale(1)}
  50%{transform:scale(1.05) translate(-20px,-20px)}
  100%{transform:scale(1)}
}


/* ================= BREADCRUMB ================= */
.cu-breadcrumb {
  background: #fffaf3;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,122,24,0.15);
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumb-list a {
  color: #ff7a18;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-list .current {
  font-weight: 600;
}


/* ================= SECTION ================= */
.section{
  max-width:1200px;   /* IMPORTANT */
  margin:auto;
  padding:80px 20px;
}

.section-title{
  text-align:center;
  font-size:32px;
  margin-bottom:40px;
  color:#ff7a18;
}


/* ================= GRID (FIXED 3 CARDS SAME SIZE) ================= */

/* =========================
   GRID (same as consult)
========================= */
.puja-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: auto;
}

/* =========================
   CARD (MATCH CONSULT EXACTLY)
========================= */
.puja-card{
  position: relative;
  height: 260px; /* 🔥 SAME SIZE */
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
}

/* IMAGE */
.puja-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* HOVER */
.puja-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.puja-card:hover{
  transform:translateY(-10px);
}


/* ================= OVERLAY ================= */
.puja-content{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}



/* TITLE */
.puja-content h3{
  font-size:22px;
  margin-bottom:15px;
  font-weight:600;
}


/* ================= BUTTON (BIG LIKE EPUJA) ================= */
.puja-btn{
  display:inline-block;
  padding:12px 28px;
  border-radius:30px;
  background:#ff7a18;
  color:#fff;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.puja-btn:hover{
  background:#e56700;
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}


/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .puja-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .puja-card{
    height:250px;
  }
}

@media(max-width:600px){
  .puja-grid{
    grid-template-columns:1fr;
  }

  .puja-card{
    height:220px;
  }
}