/* ================= 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;
}

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

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

.breadcrumb-list a {
  text-decoration: none;
  color: #ff7a18;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #bfa48a;
  font-size: 12px;
}

.breadcrumb-current {
  color: #2c1d14;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  .breadcrumb-list {
    font-size: 13px;
    gap: 6px;
    /* row-gap: 6px; */
  }
}

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

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


/* ================= GRID (3 CARDS PER ROW) ================= */
.puja-grid{
   max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}


/* ================= CARD DESIGN (EPUJA STYLE) ================= */
.puja-card{
  idth:100%;              /* FULL WIDTH OF GRID */
  height:320px;            /* FIXED SAME HEIGHT */
  border-radius:20px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition:0.4s ease;
}


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


/* HOVER EFFECT (IMPORTANT 🔥) */
/* .puja-card:hover img{
  transform:scale(1.1);
} */

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





/* ================= OVERLAY ================= */
.puja-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:center;
  text-align:center;
  padding:20px;

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


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


/* DESCRIPTION (OPTIONAL - REMOVE IF NOT NEEDED) */
.puja-content p{
  font-size:14px;
  color:#eee;
  margin-bottom:15px;
}


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


/* BUTTON HOVER */
.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;
  }
}