*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins,sans-serif;
}

html, body{
  width:100%;
  overflow-x:hidden;
}

/* HERO SECTION */
.hero{
  min-height:85vh;
  display:flex;
  align-items:center;
  padding:80px 8%;
  color:#fff;
  background:url("../img/punya_saarthi_hero1.png") center/cover no-repeat;
  transition:background 0.6s ease-in-out;
}

/* CONTENT */
.hero-content{
  max-width:560px;
}

.hero-content h1{
  font-size:44px;
  font-weight:700;
  margin-bottom:18px;
}

.hero-content h1 span{
  color:#f59b0e;
}

.hero-content p{
  font-size:17px;
  margin-bottom:30px;
}

/* BUTTON */
.hero-btn{
  display:inline-block;
  padding:14px 36px;
  background:#f59b0e;
  color:#7a3b00;
  font-weight:600;
  text-decoration:none;
  border-radius:40px;
}

/* ===== THUMBNAILS (SWIPE ENABLED) ===== */
.thumbnails{
  background:#fff;
  padding:20px 16px;
  display:flex;
  gap:16px;
  overflow-x:auto;
  flex-wrap:nowrap;
  -webkit-overflow-scrolling:touch;
}

.thumbnails::-webkit-scrollbar{
  display:none;
}

.thumbnails img{
  flex:0 0 auto;
  width:82px;
  height:82px;
  object-fit:cover;
  border-radius:14px;
  cursor:pointer;
  border:2px solid transparent;
  transition:transform .3s ease, border-color .3s ease;
}

.thumbnails img:hover{
  transform:scale(1.05);
  border-color:#f59b0e;
}

/* DESKTOP */
@media(min-width:769px){
  .thumbnails{
    justify-content:center;
    overflow-x:visible;
  }
}

/* MOBILE TEXT */
@media(max-width:768px){
  .hero{
    padding:60px 5%;
    text-align:center;
  }

  .hero-content h1{
    font-size:30px;
  }
}
/* FLOATING MUTE BUTTON */
.floating-mute{
  position:fixed;
  bottom:20px;
  right:20px;

  width:52px;
  height:52px;
  border-radius:50%;
  border:none;
  cursor:pointer;

  background:#f59b0e;
  color:#fff;
  font-size:22px;
  line-height:1;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:0 8px 20px rgba(0,0,0,0.35);
  z-index:9999;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* HOVER (desktop) */
@media (hover:hover){
  .floating-mute:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(0,0,0,0.45);
  }
}

/* ACTIVE (touch feedback) */
.floating-mute:active{
  transform:scale(0.92);
}

/* 📱 SMALL MOBILE */
@media (max-width:480px){
  .floating-mute{
    width:46px;
    height:46px;
    font-size:20px;
    bottom:16px;
    right:16px;
  }
}

/* 📱 LARGE MOBILE / SMALL TABLET */
@media (min-width:481px) and (max-width:768px){
  .floating-mute{
    width:48px;
    height:48px;
    font-size:21px;
    bottom:18px;
    right:18px;
  }
}

/* 💻 DESKTOP */
@media (min-width:769px){
  .floating-mute{
    width:52px;
    height:52px;
    font-size:22px;
  }
}

/* 🖥️ LARGE SCREENS */
@media (min-width:1440px){
  .floating-mute{
    width:56px;
    height:56px;
    font-size:24px;
    bottom:24px;
    right:24px;
  }
}
.floating-mute{
  color:#fff;
}


/* Secod Section */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
}

/* HERO SECTION */
.divine-hero{
  min-height:70vh;                /* 👈 reduced height */
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px 20px;
  position:relative;

  background:
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url("../img/punya_saarthi_hero2.png");

  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}

/* CONTENT */
.hero-content{
  max-width:820px;
  color:#fff;
  font-family:'Tiro Devanagari Hindi', serif;
}

/* QUOTE TEXT */
.hero-content .line-one{
  font-size:26px;
  opacity:0.95;
  margin-bottom:12px;
}

.hero-content .line-two{
  font-size:38px;
  margin-bottom:30px;
  line-height:1.4;
}

/* DIVIDER */
.hero-divider{
  width:120px;
  height:3px;
  background:linear-gradient(to right,#f59b0e,#ffd27a);
  margin:0 auto 26px;
  border-radius:20px;
}

/* BRAND */
.hero-brand{
  font-size:48px;
  font-weight:700;
  color:#f59b0e;
  letter-spacing:2px;
  font-family:'Poppins', sans-serif;
}

.hero-sub{
  font-size:14px;
  letter-spacing:4px;
  margin-top:8px;
  color:#f3d8a8;
}

/* 📱 MOBILE */
@media(max-width:768px){
  .divine-hero{
    min-height:55vh;              /* 👈 smaller on mobile */
    background-attachment:scroll; /* mobile fix */
  }

  .hero-content .line-one{
    font-size:20px;
  }

  .hero-content .line-two{
    font-size:28px;
  }

  .hero-brand{
    font-size:34px;
  }
}

/* 🖥️ LARGE SCREENS */
@media(min-width:1400px){
  .hero-content .line-two{
    font-size:44px;
  }

  .hero-brand{
    font-size:56px;
  }
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#fff;
  color:#222;
}

/* SECTION */
.category-section{
  padding:60px 4%;
}

/* GRID – 6 IN ONE ROW */
.category-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:28px;
}

/* CARD */
.category-card{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* IMAGE BOX */
.category-img{
  width:100%;
  height:150px;
  border-radius:16px;
  background-color:#f5f5f5;
  background-size:cover;
  background-position:center;
  box-shadow:0 12px 28px rgba(0,0,0,0.18);
  position:relative;
  overflow:hidden;
}

/* SOFT OVERLAY */
.category-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.25)
  );
}

/* TITLE */
.category-card h3{
  font-size:18px;
  font-weight:600;
}

/* TEXT */
.category-card p{
  font-size:14px;
  line-height:1.6;
  color:#555;
}

/* LINK */
.category-card a{
  font-size:14px;
  color:#ff7a00;
  font-weight:600;
  text-decoration:none;
  width:max-content;
}

.category-card a:hover{
  text-decoration:underline;
}

/* RESPONSIVE – HORIZONTAL SCROLL */
@media(max-width:1200px){
  .category-grid{
    overflow-x:auto;
    padding-bottom:10px;
  }

  .category-card{
    min-width:220px;
  }
}
:root{
  --gold:#c89b3c;
  --saffron:#9b6a1a;
  --bg:#fbf8f2;
  --card:#ffffff;
  --text:#3b2a10;
}

*{box-sizing:border-box;}

body{
  margin:0;
  font-family:'Poppins', sans-serif;
  background:var(--bg);
  color:var(--text);
}

.section{
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
}

.section-title{
  text-align:center;
  font-size:38px;
  font-weight:600;
  color:var(--saffron);
}

.section-subtitle{
  text-align:center;
  max-width:640px;
  margin:12px auto 60px;
  font-size:16px;
  color:#6b5a3a;
}

.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:32px;
}

.step{
  background:var(--card);
  border-radius:22px;
  padding:38px 28px 42px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  transition:transform .35s ease, box-shadow .35s ease;
}

.step:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

.svg-number{
  width:64px;
  height:64px;
  margin:0 auto 18px;
}

.step h3{
  font-size:20px;
  color:var(--saffron);
  margin-bottom:10px;
}

.step p{
  font-size:15px;
  line-height:1.7;
  color:#5a4a2d;
}

/* AUTHENTICITY */
.auth{
  margin-top:70px;
  background:linear-gradient(135deg,#fff4dc,#fdf1cf);
  border-radius:26px;
  padding:50px 30px;
}

.auth h4{
  text-align:center;
  font-size:28px;
  color:var(--saffron);
  margin-bottom:30px;
}

.auth ul{
  max-width:760px;
  margin:auto;
  list-style:none;
  padding:0;
}

.auth li{
  font-size:16px;
  padding:10px 0;
  display:flex;
  align-items:center;
  gap:12px;
}

.auth li::before{
  content:"✦";
  color:var(--gold);
  font-size:18px;
}