/* ShaniMandirSeva - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --orange: #FF6A00;
  --orange-dark: #e05d00;
  --orange-light: #fff3e8;
  --orange-mid: #FF8C38;
  --saffron: #FF9933;
  --gold: #D4A017;
  --gold-light: #FFF8E7;
  --white: #ffffff;
  --off-white: #FAFAFA;
  --light-gray: #F5F5F5;
  --border: #EAE0D8;
  --text-dark: #1A1A2E;
  --text-body: #3D3D3D;
  --text-muted: #7A7A7A;
  --shadow-sm: 0 2px 12px rgba(255, 106, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(255, 106, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(255, 106, 0, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  justify-content: center;
  display: flex;
  text-align: justify;
  
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px auto 24px;
}

.section-header .divider span {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange));
  display: block;
}

.section-header .divider span:last-child {
  background: linear-gradient(90deg, var(--orange), transparent);
}

.section-header .divider .icon {
  color: var(--orange);
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.tag {
  display: inline-flex;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.swastik{
  width: 24px;
  object-fit:contain;
  height: 24px;
}
.om{
  width: 15px;
  height: 15px;
  object-fit:contain;
}

.hero-heading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.swastik{
  width:42px;
  height:42px;
  object-fit:contain;
}

/* MOBILE */

@media(max-width:768px){

  .hero-heading{
    gap:10px;
  }

  .swastik{
    width:28px;
    height:28px;
  }

}

/* Header*/

.header {
  position: sticky;
  top: 10px;
  z-index: 1000;

  width: 95%;
  max-width: 1500px;

  margin: 0 auto;


  backdrop-filter: blur(10px);


  border-radius:20px;

  background:#ffffff;

  border:1px solid rgba(255,255,255,0.2);

  box-shadow:0 2px 16px rgba(0,0,0,0.06);

  transition:0.4s ease;

  overflow:visible;
}
.header.scrolled{
  background:rgba(255,255,255,0.75);

  backdrop-filter:blur(12px);

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

  box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

.header-main {
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0px 5px;

}

/* Logo Image */
.logo-img {
  width: auto;
  object-fit: contain;
  height: 80px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Hover effect  */
.logo-img:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

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

@media (max-width: 480px) {
  .logo-img {
    height: 35px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--orange);
  background: var(--orange-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login {
  padding: 9px 20px;
  font-size: 0.85rem;
  color: var(--text-body);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

.btn-login:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-seva {
  padding: 9px 20px;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  text-decoration: none;
}

.btn-seva:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}


/* MOBILE NAVBAR */
@media (max-width: 768px) {

  .header {
    width: 96%;
  }

  .header-main {
    padding: 10px 0;
  }

  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  /* LOGO */
  .logo-img {
    height: 55px;
  }

  /* HAMBURGER */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 9999;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 2px;
  }

  /* NAV MENU */
  .nav {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    background: #fff;

    padding: 20px;

    border-radius: 0 0 20px 20px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    display: none;

    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* OPEN MENU */
  .nav.open {
    display: flex;
  }

  /* NAV LINKS */
  .nav a {
    width: 100%;
    padding: 12px 15px;
  }


  .header-actions{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-seva{
    padding: 8px 14px;
    min-width: 80px;
    height: 40px;

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

    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    background: linear-gradient(135deg,#ff7a00,#ff9500);
    box-shadow: 0 4px 12px rgba(255,122,0,0.25);
    text-align: center;
    border-radius: 10px;
    white-space: nowrap;
  }

}



/*  HERO SECTION */

.hero {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 50%, #FFF3E8 100%);
  padding: 60px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

.hero-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 460px;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,26,46,0.85));
  padding: 40px 32px 28px;
  color: white;
}

.slide-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.slide-overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
}

.slider-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.slider-nav button:hover {
  background: rgba(255,255,255,0.3);
  border-color: white;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

.donation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.donation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--saffron));
}

.donation-card .temple-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.donation-card .location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.temple-support-message{
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: justify;
}

.progress-bar-wrap {
  margin-bottom: 20px;
}

.progress-bar-wrap .labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.progress-bar-wrap .labels .raised {
  font-weight: 600;
  color: var(--orange);
  font-size: 0.85rem;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: var(--light-gray);
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--saffron));
  border-radius: 50px;
  transition: width 1.2s ease;
}

.donation-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stat-item {
  text-align: center;
  padding: 12px 8px;
  background: var(--orange-light);
  border-radius: 10px;
}

.stat-item .value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
}

.stat-item .label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.quick-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.amount-btn {
  padding: 10px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.amount-btn:hover,
.amount-btn.selected {
  border-color: var(--orange);
  background: var(--orange-light);
  color: var(--orange);
}

.custom-amount {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.custom-amount input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.custom-amount input:focus {
  border-color: var(--orange);
}

.btn-seva-card {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-seva-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.4);
}

/* ABOUT SECTION */

.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  width: 100%;
}

.about-image img {
  width: 100%;
  max-width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Floating Badge */
.about-image .floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
  z-index: 2;
}

.about-image .floating-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.about-image .floating-badge .text {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}


@media (max-width: 991px) {

  .about-image img {
    height: 520px;
  }

  .about-image .floating-badge {
    bottom: -15px;
    right: 15px;
    padding: 14px 18px;
  }

  .about-image .floating-badge .number {
    font-size: 1.7rem;
  }
}


@media (max-width: 576px) {

  .about-image {
    overflow: visible;
  }

  .about-image img {
    height: auto;
    min-height: 420px;
    object-fit: cover;
    border-radius: 18px;
  }

  .about-image .floating-badge {
    bottom: -12px;
    right: 12px;
    padding: 12px 16px;
    border-radius: 14px;
  }

  .about-image .floating-badge .number {
    font-size: 1.4rem;
  }

  .about-image .floating-badge .text {
    font-size: 0.7rem;
  }
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.deities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.deity-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
}

.deity-chip:hover {
  border-color: var(--orange);
  background: var(--orange-light);
  color: var(--orange);
}

.deity-chip .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* CONSTRUCTION DONATION */

.construction-donation {
  background: var(--white);
}

.construction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.construct-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.construct-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.construct-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.construct-card-body {
  padding: 20px;
}

.construct-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.construct-card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.price-row .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: var(--light-gray);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--orange);
  color: white;
}

.qty-input {
  width: 36px;
  height: 30px;
  border: none;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
}

/* TEMPLES SECTION */

.temples {
  background: var(--off-white);
}

.temples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.temple-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.temple-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.temple-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.temple-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.temple-card-img .state-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  backdrop-filter: blur(4px);
}

.temple-card-body {
  padding: 20px;
}

.temple-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.temple-card-body .location-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.temple-card-body .location-row svg {
  color: var(--orange);
  flex-shrink: 0;
}

.temple-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--orange-light);
  border-top: 1px solid var(--border);
}

.temple-card-footer .puja-count {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
}

/*  PUJA CAROUSEL FIX  */

.puja-carousel{
  position:relative;
  width:100%;
  height:480px; 
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top: -30px;
}

/* CARD */

.puja-card{
  position:absolute;
  width:250px;
  background:#fff;
  border-radius:24px;
  overflow:hidden;

  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease,
    width 0.8s cubic-bezier(0.22, 1, 0.36, 1);

  box-shadow:0 12px 30px rgba(0,0,0,0.10);
  opacity:0;
}

/* CENTER */

.puja-card.center{
  width:360px;
  z-index:5;
  opacity:1;
  transform:translateX(0) scale(1);
}

/* LEFT */

.puja-card.left{
  width:240px;
  z-index:2;
  opacity:0.7;
  transform:translateX(-310px) scale(0.82);
}

/* RIGHT */

.puja-card.right{
  width:240px;
  z-index:2;
  opacity:0.7;

  transform:translateX(310px) scale(0.82);
}

/* HIDDEN */

.puja-card.hidden-left{
  opacity:0;
  transform:translateX(-700px) scale(0.5);
}

.puja-card.hidden-right{
  opacity:0;
  transform:translateX(700px) scale(0.5);
}

/* IMAGE */

.puja-image{
  width:100%;
  height:190px; 
  overflow:hidden;
}

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

.puja-card.left .puja-image,
.puja-card.right .puja-image{
  height:170px;
}

.puja-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 1s ease;
}

.puja-card:hover img{
  transform:scale(1.08);
}

/* CONTENT */

.puja-content{
  background:#fff;
  margin:0 12px 12px;
  margin-top:-22px;
  position:relative;
  z-index:2;
  border-radius:18px;
  padding:16px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

/* TITLE */

.puja-content h3{
  font-size:1.15rem;
  line-height:1.4;
  color:#222;
  margin-bottom:12px;
  font-weight:700;
}

/* INFO */

.puja-info{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-bottom:10px;
}

.puja-info p{
  color:#666;
  font-size:0.86rem;
  line-height:1.5;
  margin:0;
}

/* BOTTOM */

.puja-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:12px;
}

.puja-price{
  font-size:1.1rem;
  font-weight:700;
  color:#ff6b00;
}

/* BUTTON */

.book-btn{
  background:#58a700;
  color:#fff;
  padding:10px 18px;
  border-radius:50px;
  text-decoration:none;
  font-size:0.82rem;
  font-weight:600;
  transition:0.3s;
}

/* ARROWS */

.puja-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:#ff6b00;
  color:#fff;
  font-size:1.3rem;
  cursor:pointer;
  z-index:20;
}

.puja-arrow.left-btn{
  left:40px;
}

.puja-arrow.right-btn{
  right:40px;
}

/*  MOBILE  */

@media(max-width:991px){

  .puja-carousel{
    height:420px;
  }

  .puja-card.center{
    width:260px;
  }

  .puja-card.left{
    width:180px;

    /* MOBILE GAP */
    transform:translateX(-190px) scale(0.8);
  }

  .puja-card.right{
    width:180px;

    /* MOBILE GAP */
    transform:translateX(190px) scale(0.8);
  }

  .puja-card.center .puja-image{
    height:170px;
  }

  .puja-card.left .puja-image,
  .puja-card.right .puja-image{
    height:140px;
  }

  .puja-content{
    padding:14px;
  }

  .puja-content h3{
    font-size:1rem;
  }

  .puja-info p{
    font-size:0.75rem;
  }

  .book-btn{
    padding:8px 14px;
    font-size:0.72rem;
  }

  .puja-arrow{
    width:42px;
    height:42px;
    font-size:1rem;
  }

  .puja-arrow.left-btn{
    left:5px;
  }

  .puja-arrow.right-btn{
    right:5px;
  }
}

/*   VIDEO SECTION */

.videos {
  background: var(--off-white);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.video-card iframe {
  width: 100%;
  height: 210px;
  border: none;
  display: block;
}

.video-card-body {
  padding: 16px 18px;
}

.video-card-body h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.video-card-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/*  ================
   DONATORS SECTION
    ================ */

.donators {
  background: var(--white);
}

.donators-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.donators-table {
  width: 100%;
  border-collapse: collapse;
}

.donators-table th {
  background: linear-gradient(135deg, var(--orange), var(--saffron));
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.donators-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.donators-table tr:last-child td {
  border-bottom: none;
}

.donators-table tr:hover td {
  background: var(--orange-light);
}

.donor-amount {
  font-weight: 700;
  color: var(--orange);
}

/*  ================
   TESTIMONIALS
    ================ */

.testimonials {
  background: linear-gradient(135deg, #FFF8F0, #FFFFFF);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.12;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.testimonial-card .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.testimonial-card .stars span {
  color: var(--saffron);
  font-size: 0.9rem;
}

.testimonial-card .quote {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.author-info .city {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/*  ================
   WHATSAPP FLOAT
    ================ */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/*  ================
   FOOTER
    ================ */

.footer {
  background: #1A1A2E;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text .name {
  color: var(--white);
}

.footer-brand .logo-text .tagline {
  color: var(--orange);
}

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--orange);
  color: white;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 106, 0, 0.3);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact li svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: var(--orange);
  text-decoration: none;
}

/*  ================
   PAGE HERO BANNERS
    ================ */
.page-hero{
  position:relative;
  overflow:hidden;

  background-image:
    linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)),
    url("../images/pujabg.jpg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  padding:45px 15px;
  text-align:center;
  color:#fff;
}

/* PATTERN */

.page-hero::before{
  content:"";
  position:absolute;
  inset:0;

  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

  z-index:1;
}

/* CONTENT */

.page-hero *{
  position:relative;
  z-index:2;
}

/* HERO ICON */

.page-hero .hero-icon{
  font-size:1.5rem;
  margin-bottom:10px;
  opacity:0.9;
}

/* HEADING */

.page-hero h1{
  font-family:'Playfair Display',serif;
  font-size:2.4rem;
  font-weight:700;
  margin-bottom:12px;
  line-height:1.2;

  /* IMPORTANT */
  max-width:100%;
  white-space:nowrap;
}

/* TEXT */

.page-hero p{
  font-size:1rem;
  opacity:0.92;
  max-width:680px;
  margin:0 auto;
  line-height:1.6;
}

/* BREADCRUMB */

.breadcrumb{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:16px;
  font-size:0.88rem;
  opacity:0.9;
  flex-wrap:wrap;
}

.breadcrumb a{
  color:#fff;
  text-decoration:none;
}

.breadcrumb span{
  color:rgba(255,255,255,0.75);
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media(max-width:768px){

  .page-hero{
    padding:22px 12px !important;
    min-height:250px;

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

  .page-hero .container{
    padding:0;
  }

  /* TOP SWASTIK */

  .page-hero .hero-icon{
    font-size:1.1rem !important;
    margin-bottom:8px !important;
  }

  /* HEADING */

  .page-hero h1{
    font-size:1.65rem !important;
    line-height:1.2 !important;
    margin-bottom:10px !important;
    letter-spacing:-0.3px;

    white-space:nowrap;
    transform:scaleX(0.92);
  }

  /* TEXT */

  .page-hero p{
    font-size:0.88rem !important;
    line-height:1.5 !important;
    max-width:300px;
    margin:auto;
  }

  /* BREADCRUMB */

  .breadcrumb{
    margin-top:12px !important;
    gap:5px !important;
  }

  .breadcrumb a,
  .breadcrumb span{
    font-size:0.78rem !important;
  }

}


/* EXTRA SMALL */

@media(max-width:480px){

  .page-hero{
    min-height:220px;
    padding:18px 10px !important;
  }

  .page-hero h1{
    font-size:1.35rem !important;
  }

  .page-hero p{
    font-size:0.78rem !important;
    max-width:260px;
  }

}

/* MOBILE RESPONSIVE */

@media (max-width:768px){

  .hero-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    font-size:1.2rem;
    text-align:center;
    flex-wrap:nowrap;
  }

  .hero-heading span{
    white-space:nowrap;
  }

  .swastik{
    width:22px;
    height:22px;
    object-fit:contain;
    flex-shrink:0;
  }

}







/*  ================
   FORMS (Login / Register / Donate)
    ================ */

.form-page {
  background: var(--off-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.form-card .form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-card .form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text-body);
  outline: none;
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-footer a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.alert-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}

.alert-error {
  background: #fce4ec;
  border: 1px solid #f48fb1;
  color: #c62828;
}

/*  ================
   TEMPLE DETAILS PAGE
    ================ */

.temple-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.gallery-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.gallery-thumbs {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.gallery-thumbs img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-thumbs img:hover {
  opacity: 0.85;
}

.temple-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.temple-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.temple-info .location-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.temple-info .location-meta svg {
  color: var(--orange);
}

.temple-info p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.puja-available {
  margin-top: 28px;
}

.puja-available h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.puja-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.puja-pill {
  padding: 6px 16px;
  background: var(--orange-light);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--orange);
}

.temple-side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.temple-side-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--orange-light);
}

/*  ================
   CAMPAIGN / DONATE PAGE
    ================ */

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.campaign-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.campaign-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.campaign-card-body {
  padding: 24px;
}

.campaign-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.campaign-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.campaign-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: var(--orange-light);
  border-top: 1px solid var(--border);
}
.social-logo{
  width:24px;
  height:24px;
  object-fit:contain;
}

/*  ================
   RESPONSIVE
    ================ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-slider { height: 380px; }
  .hero-slider .slide img { height: 380px; }
  .construction-grid { grid-template-columns: repeat(2, 1fr); }
  .puja-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .hamburger { display: flex; }
  .temples-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .temple-gallery { grid-template-columns: 1fr; }
  .temple-detail-grid { grid-template-columns: 1fr; }
  .campaign-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .temples-grid { grid-template-columns: 1fr; }
  .puja-grid { grid-template-columns: repeat(2, 1fr); }
  .construction-grid { grid-template-columns: 1fr; }
  .header-actions .btn-login { display: none; }
}
