:root{
  --brand:#E67E22;          /* Bhagwa */
  --brand-dark:#D35400;
  --gold:#C9A227;

  --bg:#FFF7E6;             /* Temple background */
  --card:#FFFFFF;

  --text:#4A2C0B;           /* Warm brown text */
  --muted:#7A5A3A;

  --shadow: 0 12px 30px rgba(0,0,0,.08);
}

*{ box-sizing:border-box; margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container{
  width: min(1320px, 92%);
  margin: 0 auto;
}

.section{
  background:
    linear-gradient(
      180deg,
      rgba(230,126,34,.08),
      rgba(255,247,230,1)
    );
}

section#about {
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-section {
    padding: 40px;
}

.aarti-section{ padding: 40px 0; }
.section-title{
  font-size: clamp(22px, 2.2vw, 32px);
  margin-bottom: 22px;
  text-align: center;
}

/* HEADER / NAV */
.header{
  position: sticky;
  top:0;
  z-index:1000;
  background: #ffffff;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 12px;
}
.logo{ font-size: 20px; }

.menu-toggle{
  display:none;
  border:0;
  background: transparent;
  font-size: 28px;
  cursor:pointer;
  line-height: 1;
}

.nav ul{
  list-style:none;
  display:flex;
  gap: 18px;
  align-items:center;
  padding-top: 26px;
}
.nav a{
  text-decoration:none;
  color: var(--text);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{
  background: rgba(13,110,253,.08);
  color: var(--brand);
}

/* HERO */
.hero{
  padding: 90px 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 200, 200, .25), transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(120, 90, 200, .25), transparent 45%),
    #f7f9fc;
}
.hero-inner{
  text-align:center;
}
.hero h1{
  font-size: clamp(28px, 3.8vw, 48px);
  margin-bottom: 10px;
}
.hero p{
  color: var(--muted);
  font-size: clamp(14px, 1.7vw, 18px);
}

/* ABOUT 50/50 */
.about-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:center;
  margin-top: 18px;
}
.about-media img{
  width:100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: min-content;
}

.about-points{ margin-top: 14px; padding-left: 18px; color: var(--text); }
.about-points li{ margin: 8px 0; }

/* CARDS */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card{
  background: var(--card);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.card img{
  width:100%;
  height: 408px;
  object-fit: cover;
  display:block;
}

.temple_events .shadow-sm {
    display: inline-block;
    transition: width .35s ease-in-out;
}
.temple_events .shadow-sm:hover {
  
}
.card-body{ padding: 14px 14px 18px; }
.card h3{ font-size: 18px; margin-bottom: 6px; }
.card p{ color: var(--muted); }

/* GALLERY SLIDER */
.gallery-slider{
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow:hidden;
}
.gallery-track{
  display:flex;
  gap: 14px;
  scroll-behavior:smooth;
  overflow:auto;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar{ display:none; }
.gallery-track img{
  width: min(520px, 85vw);
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  flex: 0 0 auto;
}
.g-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  border:0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color:#fff;
  cursor:pointer;
}
.g-btn.prev{ left: 10px; }
.g-btn.next{ right: 10px; }

/* REVIEWS */
.review-slider{
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow:hidden;
}
.review-track{
  display:flex;
  gap: 14px;
  overflow:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
}
.review-track::-webkit-scrollbar{ display:none; }

.review-card{
  flex: 0 0 auto;
  width: min(320px, 85vw);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  padding: 14px;
  text-decoration:none;
  color: var(--text);
}
.review-card h4{ margin: 10px 0 4px; }
.review-card p{ color: var(--muted); font-size: 14px; }

.yt-thumb{
  height: 180px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13,110,253,.2), rgba(0,200,200,.2));
  display:flex;
  align-items:center;
  justify-content:center;
}
.play{
  display:inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.65);
  color:#fff;
  font-size: 22px;
}

.r-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  border:0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color:#fff;
  cursor:pointer;
}
.r-btn.prev{ left: 10px; }
.r-btn.next{ right: 10px; }

/* DONATE */
.donate{
  background: #0b1220;
  color:#fff;
}
.donate-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 22px;
}
.donate-box p{ color: rgba(255,255,255,.8); margin-top: 6px; }

.btn{
  background: var(--brand);
  border:0;
  color:#fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor:pointer;
}
.btn:hover{ filter: brightness(.95); }

/* MAP */
.map iframe{
  width:100%;
  height: 420px;
  border:0;
  display:block;
}

/* FOOTER */
.footer{
  background:#0b1220;
  color:#fff;
  padding: 18px 0;
}
.footer-wrap{
  display:flex;
  justify-content:center;
}

/* WHATSAPP */
.whatsapp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2000;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-media img{ height: 320px; }
  .donate-box{ flex-direction: column; align-items:flex-start; }
}

@media (max-width: 720px){
  .menu-toggle{ display:block; }
  .nav{
    position: absolute;
    left:0;
    right:0;
    top: 62px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(0,0,0,.08);
    display:none;
  }
  .nav.open{ display:block; }
  .nav ul{
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 4%;
    gap: 8px;
  }
  .nav a{ width:100%; }

  .cards{ grid-template-columns: 1fr; }
  .gallery-track img{ height: 240px; }
  .map iframe{ height: 340px; }
}

/* HERO IMAGE SLIDER */
.hero-slider{
  position: relative;
  width: 100%;
  height: 67vh;
  min-height: 590px;
  overflow: hidden;
}

.hero-slides{
  width: 100%;
  height: 100%;
  position: relative;
}

.section-title{
  position:relative;
}

.section-title::after{
  content:"ðŸ•‰";
  display:none;
  font-size:18px;
  color:#C9A227;
  margin-top:6px;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .7s ease, transform 1.2s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active{
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}



.hero-overlay{
  position:absolute;
  inset:0;
  /*background: linear-gradient(
    to bottom,
    rgba(122,30,30,.45),
      rgba(74,44,11,.65)
  ); */
  z-index: 1;
}

.hero-inner{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 10px;
}

.hero-inner h1{
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: .2px;
}

.hero-inner p{
  margin-top: 10px;
  font-size: clamp(14px, 1.7vw, 20px);
  opacity: .92;
}

/* arrows */
.hero-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.55);
  color:#fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 5;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-arrow:hover{ background: rgba(0,0,0,.7); }
.hero-prev{ left: 14px; }
.hero-next{ right: 14px; }

/* dots */
.hero-dots{
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  display:flex;
  gap: 8px;
  z-index: 6;
}

.hero-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.55);
}
.hero-dot.active{
  background: #fff;
  width: 22px;
}

/* mobile */
@media (max-width: 720px){
  .hero-slider{
    height: 30vh;
    min-height: 162px;
  }
  .hero-inner h1 {
        font-size: clamp(16px, 4vw, 52px);
        font-weight: 800;
        letter-spacing: .2px;
    }
  .hero-arrow{
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .header-wrap{
    padding: 3px 0;
  }
}


/* FOOTER + SUBFOOTER */
.site-footer{
  background:#0b1220;
  color:#fff;
  
}

.footer-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 44px 0;
}

.footer-col h2{
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-text{
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  font-size: 14.5px;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}
.footer-links a{
  color: rgba(255,255,255,.85);
  text-decoration:none;
  font-weight: 600;
}
.footer-links a:hover{
  color:#fff;
  text-decoration: underline;
}

.footer-contact p{
  margin: 0 0 10px;
  color: rgba(255,255,255,.85);
  font-size: 14.5px;
}
.footer-contact a{
  color:#fff;
  text-decoration:none;
}
.footer-contact a:hover{
  text-decoration: underline;
}

.footer-social{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.footer-social span{
  color: rgba(255,255,255,.85);
}
.footer-social a{
    display: inline-block;
    padding: 6px 7px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 10.5px;
    background: #ef8235;
}
.footer-social a:hover{
  border-color: rgba(255,255,255,.35);
}

/* SUBFOOTER */
.subfooter{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 14px 0;
}
.subfooter-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
}
.subfooter p{
  margin:0;
  color: rgba(255,255,255,.8);
  font-size: 13.5px;
}
.subfooter-right{
  text-align:right;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px){
  .footer-grid{
    grid-template-columns: 1fr;
    padding: 34px 0;
  }
  .subfooter-wrap{
    flex-direction: column;
    align-items:flex-start;
  }
  .subfooter-right{
    text-align:left;
  }
  .events-section {
    text-align: center;
  }
  .gallery-head {
    text-align: center;
  }
}



.section-subtitle{
  text-align:center;
  max-width: 820px;
  margin: -10px auto 24px;
  color: var(--muted);
  line-height: 1.7;
}

/* About Layout */
.about-layout{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 18px;
  margin-bottom:60px;
}

.about-img img{
  width:100%;
  height: 520px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-box{
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.about-box h3{
  font-size: 22px;
  margin-bottom: 10px;
}
.about-box p{
  color: var(--muted);
  line-height: 1.7;
}

.about-points{
     display:flex;
  margin-top: 16px;
  display:grid;
  gap: 14px;
  flex-wrap:wrap;
}

.point{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 14px;
}
.point h4{
  font-size: 16px;
  margin-bottom: 6px;
}
.point ul{
  padding-left: 18px;
  color: var(--muted);
}
.point li{ margin: 6px 0; }

.about-cta{
  display:inline-block;
  margin-top: 16px;
  background: var(--brand);
  color:#fff;
  text-decoration:none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
}

/* Schedule */
.schedule{
  margin-top: 36px;
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px;
}
.schedule h3{
  font-size: 20px;
  margin-bottom: 14px;
}
.schedule-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sch-card{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 12px;
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.sch-card .time{
  font-weight: 800;
}
.sch-card .work{
  color: var(--muted);
}
.schedule-note{
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px){
  .about-layout{
    grid-template-columns: 1fr;
  }
  .about-img img{
    height: 360px;
  }
  .schedule-grid{
    grid-template-columns: 1fr 1fr;
  }
  
}
@media (max-width: 520px){
  .schedule-grid{
    grid-template-columns: 1fr;
  }
  .events-section {
    text-align: center;
  }
  .gallery-head {
    text-align: center;
  }
  .about-header{
        height: 143px !important;
    }
    .header_text_box {
        color: #fff;
        padding-top: 10% !important;
        padding-bottom: 17px !important;
        background-size: cover;
    }
    .header_text_box h1{
        font-size: 25px !important;
        line-height: 10px !important;
        margin-bottom: 10px !important;
    }
    .header_text_box p{
        font-size:14px !important;
    }
    .about-page {
        padding: 30px 0;
    }
}

.about-header h1,
.about-header p {
    color: #ffffff !important;
}

/* GURU MESSAGE */
.guru-message{
  background: linear-gradient(180deg, rgba(13,110,253,.08), rgba(0,0,0,0));
  padding: 19px;
}

.guru-wrap{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.guru-photo img{
  width:100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.guru-card{
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
  overflow:hidden;
}

.guru-card::before{
  content:"";
  position:absolute;
  top:-80px;
  right:-80px;
  width: 200px;
  height: 200px;
  background: rgba(13,110,253,.15);
  border-radius: 999px;
}

.guru-card,
.aarti-card,
.teach-card,
.seva-card{
  border:1px solid rgba(201,162,39,.25);
}

.guru-card:hover{
  box-shadow: 0 14px 35px rgba(201,162,39,.25);
}

.guru-badge{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13,110,253,.12);
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 10px;
}

.guru-card h2{
  font-size: clamp(22px, 2.3vw, 30px);
  margin-bottom: 10px;
}

.guru-sub{
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 700;
  border-left: 4px solid var(--brand);
  padding-left: 12px;
  margin-bottom: 14px;
}

.guru-text{
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.guru-sign{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap: 12px;
}

.guru-line{
  width: 42px;
  height: 2px;
  background: rgba(0,0,0,.18);
}

.guru-sign span{
  color: var(--muted);
  font-size: 14px;
}

.guru-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.guru-btn{
  display:inline-block;
  text-decoration:none;
  background: var(--brand);
  color:#fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
}
.guru-btn.outline{
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(13,110,253,.35);
}
.guru-btn:hover{ filter: brightness(.96); }

/* Responsive */
@media (max-width: 900px){
  .guru-wrap{
    grid-template-columns: 1fr;
  }
  .guru-photo img{
    height: 360px;
  }
}


/* CONTACT SECTION */
.contact-section .section-subtitle{
  text-align:center;
  max-width: 860px;
  margin: -10px auto 24px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

/* LEFT INFO */
.contact-info{
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
}
.contact-info h3{
  font-size: 20px;
  margin-bottom: 14px;
}
.info-item{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}
.info-label{
  display:inline-block;
  font-weight: 800;
  font-size: 13px;
  color: var(--brand);
  margin-bottom: 6px;
}
.info-item p{
  margin:0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14.5px;
}
.info-item a{
  color: var(--text);
  font-weight: 700;
  text-decoration:none;
}
.info-item a:hover{ text-decoration: underline; }

.contact-actions{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* RIGHT FORM */
.contact-form{
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
}
.contact-form h3{
  font-size: 20px;
  margin-bottom: 14px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field{
  display:flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.field label{
  font-weight: 800;
  font-size: 13px;
  color: var(--text);
}
.field input,
.field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  outline: none;
  font-size: 14.5px;
  background: #fff;
}
.field input:focus,
.field textarea:focus{
  border-color: rgba(13,110,253,.55);
  box-shadow: 0 0 0 4px rgba(13,110,253,.12);
}

.form-note{
  margin-top: 10px;
  color: var(--muted);
  font-size: 13.5px;
}

/* BUTTONS */
.cbtn{
  display:inline-block;
  background: var(--brand);
  color:#fff;
  text-decoration:none;
  border:0;
  cursor:pointer;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
}
.cbtn.outline{
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(13,110,253,.35);
}
.cbtn.submit{
  width: 100%;
  margin-top: 4px;
}

/* MAP */
.map iframe{
  width:100%;
  height: 420px;
  border:0;
  display:block;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px){
  .map iframe{ height: 340px; }
}



/* AARTI TIMING SECTION */
.aarti-section{
  background: linear-gradient(180deg, rgba(13,110,253,.07), rgba(0,0,0,0));
}

.aarti-head .section-subtitle{
  text-align:center;
  max-width: 860px;
  margin: -10px auto 24px;
  color: var(--muted);
  line-height: 1.7;
}

.aarti-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.aarti-card{
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.aarti-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0,0,0,.10);
}

.aarti-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.aarti-badge{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13,110,253,.12);
  color: var(--brand);
  font-weight: 800;
  font-size: 12px;
}

.aarti-time{
  font-weight: 900;
  font-size: 16px;
}

.aarti-card h3{
  font-size: 18px;
  margin-bottom: 6px;
}

.aarti-card p{
  margin:0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
}

/* Featured card */
.aarti-card.featured{
  position: relative;
  overflow: hidden;
  border-color: rgba(13,110,253,.20);
}
.aarti-card.featured::before{
  content:"";
  position:absolute;
  top:-70px;
  right:-70px;
  width: 160px;
  height: 160px;
  background: rgba(13,110,253,.18);
  border-radius: 999px;
}
.aarti-card.featured .aarti-badge{
  background: rgba(13,110,253,.18);
}

/* Note */
.aarti-note{
  margin-top: 16px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px 14px;
  text-align:center;
}
.aarti-note p{
  margin:0;
  color: var(--muted);
  line-height: 1.6;
}
.aarti-note a{
  color: var(--brand);
  font-weight: 800;
  text-decoration:none;
}
.aarti-note a:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 900px){
  .aarti-grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px){
  .aarti-grid{
    grid-template-columns: 1fr;
  }
}



/* ABOUT EXTRA: Philosophy + Founder */
.about-extra{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.about-card{
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}

.about-card::before{
  content:"";
  position:absolute;
  top:-70px;
  right:-70px;
  width: 160px;
  height: 160px;
  background: rgba(13,110,253,.12);
  border-radius: 999px;
}

.about-tag{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13,110,253,.12);
  color: var(--brand);
  font-weight: 900;
  font-size: 12.5px;
  margin-bottom: 10px;
}

.about-card h3{
  font-size: 18px;
  margin-bottom: 8px;
}

.about-card p{
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 15.5px;
}

.about-list{
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}
.about-list li{
  margin: 8px 0;
  line-height: 1.6;
}

/* Founder quote box */
.founder-quote{
  background: rgba(13,110,253,.06);
  border: 1px solid rgba(13,110,253,.18);
  border-radius: 14px;
  padding: 12px 12px 12px 14px;
  position: relative;
  margin-top: 8px;
}
.quote-mark{
  position:absolute;
  top: -12px;
  left: 12px;
  font-size: 42px;
  font-weight: 900;
  color: rgba(13,110,253,.35);
}
.founder-quote p{
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.6;
}

/* Link */
.about-link{
  display:inline-block;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}
.about-link:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 900px){
  .about-extra{
    grid-template-columns: 1fr;
  }
}


/* GURU PAGE */
.guru-page{
  background: linear-gradient(180deg, rgba(13,110,253,.06), rgba(0,0,0,0));
}

.guru-hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.guru-hero-left{
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
  border: 1px solid rgba(0,0,0,.06);
}

.guru-pill{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13,110,253,.12);
  color: var(--brand);
  font-weight: 900;
  font-size: 12.5px;
  margin-bottom: 10px;
}

.guru-title{
  font-size: clamp(24px, 2.8vw, 36px);
  margin-bottom: 8px;
}

.guru-desc{
  color: var(--muted);
  line-height: 1.7;
}

.guru-quick{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}

.quick-item{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 12px;
}
.q-label{
  display:block;
  font-weight: 900;
  font-size: 12.5px;
  color: var(--brand);
  margin-bottom: 4px;
}
.q-value{
  color: var(--muted);
  font-weight: 700;
}

.guru-hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.gbtn,
.cbtn{
  background: linear-gradient(
    135deg,
    #E67E22,
    #D35400
  );
  color:#fff;
  font-weight:800;
}

.gbtn{
  display:inline-block;
  text-decoration:none;
  background: var(--brand);
  color:#fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900;
}
.gbtn.outline{
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(13,110,253,.35);
}

/* Right image */
.guru-hero-right img{
  width:100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* Two column block */
.guru-two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.guru-card{
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  border: 1px solid rgba(0,0,0,.06);
}

.guru-card h3{
  font-size: 18px;
  margin-bottom: 10px;
}
.guru-card p{
  color: var(--muted);
  line-height: 1.7;
}

.bio-points{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bio-chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(13,110,253,.06);
  font-weight: 800;
  font-size: 13px;
}

/* Timeline */
.timeline{
  display:grid;
  gap: 14px;
  margin-top: 6px;
}
.t-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  position: relative;
}
.t-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 6px;
  flex: 0 0 auto;
}
.t-content h4{
  margin:0 0 4px;
  font-size: 15.5px;
}
.t-content p{
  margin:0;
  font-size: 14.5px;
}

/* Section head */
.guru-section{
  margin-top: 26px;
}
.section-head{
  text-align:center;
  margin-bottom: 14px;
}
.section-head h3{
  font-size: 22px;
  margin-bottom: 6px;
}
.section-head p{
  color: var(--muted);
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

/* Teachings */
.teach-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.teach-card{
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  padding: 16px;
}
.teach-card h4{ margin-bottom: 6px; }
.teach-card p{ color: var(--muted); line-height: 1.7; margin:0; }

/* Guru message block */
.guru-message-block{
  margin-top: 24px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  padding: 18px;
}
.msg-left h3{
  font-size: 22px;
  margin: 10px 0 8px;
}
.msg-left p{
  color: var(--muted);
  line-height: 1.7;
}
.msg-sign{
  margin-top: 10px;
  color: var(--text);
  font-weight: 900;
}
.msg-highlight{
  border: 1px solid rgba(13,110,253,.18);
  background: rgba(13,110,253,.06);
  border-radius: 14px;
  padding: 14px;
}
.msg-highlight h4{ margin-bottom: 10px; }
.msg-highlight ul{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
}
.msg-highlight li{ margin: 8px 0; }

/* Quotes row (scroll on mobile) */
.quotes-row{
  display:flex;
  gap: 12px;
  overflow:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding-bottom: 6px;
}
.quotes-row::-webkit-scrollbar{ display:none; }
.quote-card{
  flex: 0 0 auto;
  width: min(340px, 85vw);
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  padding: 16px;
}
.quote-card p{
  margin:0;
  font-weight: 800;
  line-height: 1.6;
}

/* Seva */
.seva-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.seva-card{
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  padding: 16px;
}
.seva-card h4{ margin-bottom: 6px; }
.seva-card p{ margin:0; color: var(--muted); line-height: 1.7; }

/* Responsive */
@media (max-width: 1000px){
  .teach-grid, .seva-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px){
  .guru-hero{ grid-template-columns: 1fr; }
  .guru-hero-right img{ height: 340px; }
  .guru-two-col{ grid-template-columns: 1fr; }
  .guru-message-block{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .teach-grid, .seva-grid{ grid-template-columns: 1fr; }
}

.site-logo{
  width:155px;
  height:65px;
  object-fit:contain;
}


.about-section { padding: 44px 0; background: #fbf3e6; }

.section-head { text-align: center; max-width: 820px; margin: 0 auto 34px; }
.section-title { font-size: clamp(30px, 3.2vw, 46px); margin: 0 0 10px; color:#3c2a18; }
.section-subtitle { margin: 0; line-height: 1.7; color: rgba(60,42,24,.75); }

.about-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  align-items: start;            /* ✅ stretch remove */
}

.about-card{
  background: #fff7ea;
  border: 1px solid rgba(60,42,24,.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}

/* Left image card */
.about-image{
  border-radius: 16px;
  overflow:hidden;
  /*aspect-ratio: 4 / 5; */     /* FIX: portrait balanced like your photo */
  min-height: 560px;        /* FIX: consistent height */
  background:#f3e6d5;
}
.about-image img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.about-media:hover img{ transform: scale(1.06); }

.about-chip{
  position:absolute;
  left: 18px;
  bottom: 18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(25, 17, 10, 0.75);
  color:#fff;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.about-full{
  grid-column:1 / -1;
  background: var(--card);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 22px;
}

.about-full p{
    color: var(--muted);
    line-height: 1.7;
}

.about-chip i{ font-size: 15px; }

/* Right content card */
.about-content{
  height: fit-content;           /* ✅ no blank extra height */
}
.about-text{
  margin: 4px 0 16px;
  line-height: 1.85;
  color: rgba(60,42,24,.85);
  max-width: 83ch;  /* FIX: better line length */
}

.about-points{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  display:grid;
  gap:12px;
}
.about-points li{
  display:grid;
  grid-template-columns: 22px 1fr;
  gap:12px;
  padding:12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(60,42,24,.10);
}
.about-points i{ font-size: 18px; margin-top: 2px; color:#3c2a18; }
.about-points strong{ color:#3c2a18; }
.about-points span{ color: rgba(60,42,24,.70); }

.about-actions{
  margin-top: auto; /* FIX: buttons always stick bottom for equal card feel */
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform .2s ease, opacity .2s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary{     background: linear-gradient(135deg, #ff7a18, #ffb347);
    border: 2px solid #ffffff;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);}
.btn-secondary{
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    border: 2px solid #ffffff;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover, .btn-secondary:hover{ transform: translateY(-2px);     
                    background: linear-gradient(135deg, #ff0000, #ffa733);
    box-shadow: 0 8px 25px rgba(255,122,24,0.4); }

/* Responsive */
@media (max-width: 992px){
  .about-section{ padding: 20px 0; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-image{ min-height: 380px; /*aspect-ratio: 4 / 4*/; }
  .section-head{ text-align:left; }
  
}


/* EVENTS SECTION */
.events-section{
  padding: 40px 0;
  background: linear-gradient(180deg, #f9efdD 0%, #fbf3e6 100%);
}

.events-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 28px;
  position: relative;
}

.section-title{
  margin: 0 0 10px;
  color: #3c2a18;
  font-size: clamp(30px, 3.2vw, 46px);
}

.section-subtitle{
  margin: 0 auto;
  max-width: 70ch;
  color: rgba(60,42,24,.75);
  line-height: 1.75;
  font-size: 16px;
}

.events-all-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  color: #3c2a18;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(60,42,24,.18);
  background: rgba(255,255,255,.45);
  transition: transform .2s ease, opacity .2s ease;
}
.events-all-btn:hover{ transform: translateY(-2px); opacity: .95; }

.events-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* CARD */
.event-card{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(60,42,24,.12);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}

/* MEDIA */
.event-media{
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1e3cf;
}

.event-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.event-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.event-card:hover .event-media img{
  transform: scale(1.07);
}

/* DATE BADGE */
.event-badge{
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(25,17,10,.72);
  color: #fff;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

/* BODY */
.event-body{
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-title{
  margin: 2px 0 8px;
  color: #3c2a18;
  font-size: 18px;
  font-weight: 900;
}

.event-desc{
  margin: 0 0 12px;
  line-height: 1.7;
  color: rgba(60,42,24,.78);
  font-size: 15.5px;
}

/* META */
.event-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px solid rgba(60,42,24,.12);
  color: rgba(60,42,24,.75);
  font-size: 13.5px;
}

.event-meta i{ margin-right: 6px; }

/* BUTTON */
.event-btn{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  transition: transform .2s ease, opacity .2s ease;
  box-shadow: 0 8px 25px rgba(255, 122, 24, 0.4);
    border: 2px solid #ffffff;
}

.event-btn:hover{
    transform: translateY(-2px);
    background: linear-gradient(135deg,#ff0000,#ffa733);
    box-shadow: 0 8px 25px rgba(255,122,24,0.4);
}

/* RESPONSIVE */
@media (max-width: 992px){
  .events-section{ padding: 30px 0; }
  .events-grid{ grid-template-columns: 1fr; }
  .events-head{ text-align: left; }
  .events-all-btn{ margin-top: 12px; }
}



/* GALLERY */
.gallery-section{
  padding: 40px 0;
  background: #f3e4cc;
}

.gallery-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 18px;
}

.section-subtitle{
  margin: 0 auto;
  max-width: 70ch;
  color: rgba(60,42,24,.75);
  line-height: 1.75;
  font-size: 16px;
}

.gallery-wrap{
  position: relative;
  margin-top: 18px;
}

.gallery-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3); /* 3 cards desktop */
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 6px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(60,42,24,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

/* Hide scrollbar */
.gallery-track::-webkit-scrollbar{ height: 8px; }
.gallery-track::-webkit-scrollbar-thumb{ background: rgba(60,42,24,.15); border-radius: 999px; }
.gallery-track::-webkit-scrollbar-track{ background: transparent; }

.gal-item{
     border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  background: transparent;
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(60,42,24,.12);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  text-decoration: none;
}


#galleryTrack{
  overflow-x: auto !important;
  overflow-y: hidden;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  scroll-snap-type: x mandatory;
}
@media (max-width: 992px){
  #galleryTrack{ grid-auto-columns: 80%; }
}


.gal-item img{
  width: 100%;
  height: 280px;       /* consistent height */
  object-fit: cover;   /* fixes different ratios */
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.gal-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  opacity: .9;
  pointer-events:none;
}

.gal-cap{
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(25,17,10,.70);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.gal-item:hover img{ transform: scale(1.07); }

/* Arrows */
.gal-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(60,42,24,.18);
  background: rgba(255,255,255,.65);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
  transition: transform .2s ease, opacity .2s ease;
  z-index: 5;
}

.gal-btn:hover{ transform: translateY(-50%) scale(1.05); }
.gal-btn.prev{ left: -10px; }
.gal-btn.next{ right: -10px; }

.gal-btn i{ font-size: 18px; color:#3c2a18; }

/* Dots */
.gal-dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 14px;
}
.gal-dots button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(60,42,24,.25);
  cursor: pointer;
}
.gal-dots button.active{ background: #ff7a18; width: 26px; }

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 22px;
}
.lightbox.open{ display:flex; }
.lightbox img{
  max-width: min(980px, 96vw);
  max-height: 86vh;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.lb-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.lb-close i{ color:#fff; font-size: 18px; }

/* Responsive */
@media (max-width: 992px){
  .gallery-section{ padding: 30px 0; }
  .gallery-head{ text-align:left; }
  .gallery-track{ grid-auto-columns: 80%; } /* 1.2 cards feel */
  .gal-btn.prev{ left: 6px; }
  .gal-btn.next{ right: 6px; }
  .gal-item img{ height: 260px; }
}


/* REVIEWS */
.reviews-section{
  padding: 40px 0;
  background: linear-gradient(180deg, #f9efdD 0%, #fbf3e6 100%);
}

.reviews-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 18px;
}

.reviews-wrap{
  position: relative;
  margin-top: 18px;
}

.review-track {
    display: grid;
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 8px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .35);
    border: 1px solid rgba(60, 42, 24, .10);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 600px) and (max-width: 991px) {
    .review-track {
        grid-auto-columns: calc((100% - 18px) / 1);
    }
    
}


@media (max-width: 599px) {
    .review-track {
        grid-auto-columns: 100%;
    }
}

.review-track::-webkit-scrollbar{ height: 8px; }
.review-track::-webkit-scrollbar-thumb{ background: rgba(60,42,24,.15); border-radius: 999px; }
.review-track::-webkit-scrollbar-track{ background: transparent; }

.review-card{
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(60,42,24,.12);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-rows: 190px auto;
  transition: transform .25s ease, box-shadow .25s ease;
}

.review-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,.12);
}

.yt-thumb{
  position: relative;
  background: #dfefff;
  background-size: cover;
  background-position: center;
}

.yt-thumb::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.45) 100%);
}

.play{
  position:absolute;
  inset: 0;
  display:grid;
  place-items:center;
  z-index:2;
}

.play i{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 26px;
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
}

.review-body{
  padding: 14px 14px 16px;
}

.review-body h4{
  margin: 0 0 6px;
  font-weight: 900;
  color: #3c2a18;
  font-size: 16px;
}

.review-body p{
  margin: 0;
  color: rgba(60,42,24,.72);
  font-size: 13px;
}

/* arrows */
.r-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(60,42,24,.18);
  background: rgba(255,255,255,.70);
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
  z-index: 5;
}

.r-btn.prev{ left: -10px; }
.r-btn.next{ right: -10px; }
.r-btn i{ font-size: 18px; color:#3c2a18; }

/* dots */
.r-dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 14px;
}
.r-dots button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(60,42,24,.25);
  cursor: pointer;
}
.r-dots button.active{ background: #ff7a18; width: 26px; }

/* responsive */
@media (max-width: 992px){
  .reviews-section{ padding: 30px 0; }
  .aarti-section{ padding: 30px 0; }
  .reviews-head{ text-align: left; }
  .review-track {
        grid-auto-columns: calc((100% - 36px) / 1);
    }
  .r-btn.prev{ left: 6px; }
  .r-btn.next{ right: 6px; }
}

.header_text_box {
    color: #fff;
    padding-top: 12%;
    padding-bottom: 130px;
    background-size: cover;
}

.header_text_box h1 {
    text-align: left;
    font-size: 45px;
    line-height: 60px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.header_text_box .inner_box {
    max-width: 100%;
    width: 480px;
    text-align: start;
}

.header_text_box p {
    font-size: 20px;
    margin: 0 0 30px;
    text-align: justify;
    color: #fff;
}

.header_text_box .inner_box p {
    text-align: start;
}


.about-header {
    background-size: cover;
    /*background-position: center;*/
    position: relative;
}

.about-header .overlay {
    background: rgba(0,0,0,0.45); /* Dark transparent layer */
    padding: 120px 0;
}

.santsang_hall {
    border-radius: 20px;
    margin-top: 58px !important;
}

.radha_krishana{
    border-radius: 20px;
    margin-top: 58px !important;
}

.aanandeshwar{
    border-radius: 20px;
    margin-top: 58px !important;
}

.hanuman_mandir{
    border-radius: 20px;
    margin-top: 58px !important;
}

.gurudev_mandir{
    border-radius: 20px;
    margin-top: 58px !important;
}

.navdha_bhakti p{
    padding:0px !important;
    margin: 0px !important;
}

.navdha_bhakti h5{
    padding:0px !important;
    margin: 0px !important;
}



#gallery {
  padding-top: 40px;
  @media screen and (min-width: 991px) {
    padding: 60px 30px 0 30px;
  }
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
  img {
    width: 100%;
  }
}
.img-overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  i {
    color: #fff;
    font-size: 3em;
  }
}

#overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  // Removes blue highlight
  -webkit-user-select: none;
  -moz-user-select: none;    
  -ms-user-select: none; 
  user-select: none; 
  img {
    margin: 0;
    width: 80%;
    height: auto;
    object-fit: contain;
    padding: 5%;
    @media screen and (min-width:768px) {
        width: 60%;
    }
    @media screen and (min-width:1200px) {
        width: 50%;
    }
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}

.add_gallery {
    margin-bottom: 80px;
}

div#msgs {
    padding: 10px 0 20px;
}

.event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .35s ease;
}