/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

 body {
 font-family: 'Montserrat';
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    scroll-behavior: smooth;
}

/* Top Bar */
.top-bar {
  background: #F99200;
  color: #fff;
  font-size: 14px;
 font-weight: 700;
  padding: 10px 0;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
font-family: serif;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* HEADER */
.main-header {
  width: 100%;
  background: #B10819;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.main-header.scrolled {
  background: rgba(177, 8, 25, 0.92);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

/* CONTAINER (IMPORTANT FIX) */
.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 15px;
font-family: serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 60px;
  height: 45px;
  object-fit: contain;
}

/* PREMIUM UNDERLINE */
.logo-text h2::after {
  content: "";
  display: block;
  width: 60%;        /* line width */
  height: 3px;       /* thickness */
  background: #ffd700; /* yellow color */
  margin-top: 5px;   /* space below text */
}
/* TEXT */
.logo-text h2 {font-family: serif;
  font-size: 24px;
  background: linear-gradient(90deg, #c70000, #ffd700, #ffffff);
  background-size: 200%;
  font-family: serif;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  white-space: nowrap;
}
.logo-text span {
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 1px;
}
.logo-text h2 {
  margin-bottom: 5px; 
 /* spacing below heading */
}
/* ANIMATION */
@keyframes shine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* MENU */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  font-size: 15px;
}

/* HOVER */
.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #f7931e;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* CONTACT */
.header-right {
  text-align: right;
  font-size: 13px;
  flex-shrink: 0;
}

.header-right span {
  display: block;
  color: #ffffff; /* normal text */
}

/* Highlight number */
.header-right span b {
  color: #ffffff; /* light gold */
  font-weight: 600;
  letter-spacing: 0.5px;
font-size: 15px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #b30000;
  margin: 4px 0;
}

/* =================== LARGE LAPTOP =================== */
@media (max-width: 1200px) {
  .nav-menu ul {
    gap: 15px;
  }
}
/* =================== TABLET =================== */
@media (max-width: 992px) {

  .logo-text h2 {
    font-size: 20px;
  }
  .header-right {
    display: none;
  }
}

/* =================== MOBILE =================== */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: 0.3s;
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .nav-menu ul li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .nav-menu.active {
    left: 0;
  }

  .logo-text h2 {
    font-size: 18px;
  }

  .logo-img {
    width: 50px;
  }
}

/* =================== SMALL MOBILE =================== */
@media (max-width: 480px) {

  .logo-text h2 {
    font-size: 16px;
  }

  .logo-text span {
    font-size: 10px;
  }
}


/* HERO SECTION */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffb923;
}


/* ADDRESS */
.temple-address {
  color: #ffb923;
  font-size: 14px;
  margin: 10px 0 15px;
  letter-spacing: 1px;
}

/* MANTRA HIGHLIGHT */
.mantra h5 {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
  text-align: center;
  /* premium glow */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* 🌄 BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/ganesh\ image\(1\).webp") no-repeat center/cover;
  animation: zoomBg 20s infinite alternate ease-in-out;
  z-index: 0;
  transition: transform 0.15s linear;
  will-change: transform;
}

/* 🔥 ZOOM ANIMATION */
@keyframes zoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* 🌑 OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 237, 197, 0.8), rgba(0, 0, 0, 0.7), rgba(255,165,0,0.4));
  z-index: 1;
}

/* CONTAINER */
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* TEXT */
.hero-content {
  flex: 1;
}

/* HEADING */
.hero-content h1 {
  font-size: 38px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero-content h1 span {
  display: block;
  font-size: 20px;
  color: #ffb923;
}

/* TEXT */
.hero-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ffffff;
   text-align: justify;
}
.hero .hero-content p {
  color: #ffffff ;
  text-align: justify;
}
/* BUTTON */
.btn {
  padding: 12px 25px;
   background: linear-gradient(45deg, #800000);

  color: #800000;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
}

/* IMAGE */
.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: floatImg 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatImg {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 26px;
  }
}

/* service SECTION */
.services {
  padding: 90px 0;
  background: #fffaf5;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #f1f1f1;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* TOP ACCENT LINE */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #800000, #ff9900);
}

/* ICON */
.service-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #fff3e0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.service-icon img {
  width: 32px;
  height: 32px;
}

/* HEADING */
.service-card h3 {
  font-size: 18px;
  color: #7b1e1e;
  margin-bottom: 8px;
  font-weight: 600;
}

/* TEXT */
.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-secondary {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 25px;
  width: 20%;
  background: #800000;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.btn-secondary:hover {
  background: #ff9900;
  transform: translateY(-2px);
}
/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}
/* ICON HOVER */
.service-card:hover .service-icon {
  background: #ff9900;
}
.service-card:hover .service-icon img {
  filter: none;
}
/* HEADING HOVER */
.service-card:hover h3 {
  color: #ff9900;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services {
    padding: 60px 15px;
  }
}


/* Gallery Section */
/* SECTION */
.gallery-item {
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
}

/* Overlay */
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(128,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Button */
.view-btn {
  background: #ffd700;
  color: #800000;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transform: scale(0.8);
  transition: 0.3s;
}

/* Button Hover Effect */
.gallery-item:hover .view-btn {
  transform: scale(1);
}

.view-btn:hover {
  background: #fff;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width:992px){
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
* Contact Section */
/* SECTION */
.contact {
  padding: 80px 0;
  background: #fffaf5;
}

/* TITLE */
.section-title {
font-family: serif;
  font-size: 34px;
  text-align: center;
  color: #800000; /* Mehroon color */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.section-title span {
  display: block;
  font-size: 18px;
  color: #ffd700;
}

/* LAYOUT */
.contact-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT INFO */
.contact-info {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h3 {
  margin-bottom: 15px;
  color: #800000;
}

.contact-info p {
  margin-bottom: 10px;
  color: #444;
}

/* FORM */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
  margin-bottom: 15px;
  color: #800000;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b30000;
  box-shadow: 0 0 5px rgba(179,0,0,0.3);
}

/* BUTTON */
.btn {
  background: #b30000;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #f7931e;
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-container {
    flex-direction: column;
  }
} 

/* WhatsApp Button */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #5cb67d;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* FOOTER */
/* SOCIAL ICONS */
.social-icons {
  margin-top: 15px;
}
.footer-col p i {
  font-size: 18px;
  min-width: 22px;        /* FIX alignment */
  text-align: center;
  color: #d6d6d4;   
  margin-top: 5px;      /* gold color */
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #fff;
  background: #F99200;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #7c0c08;
  color: #ffffff;
}
/*footer*/
.footer {
  background: linear-gradient(135deg, #B10819, #B10819);
  color: #fff;
  padding-top: 60px;
  position: relative;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo span {
  font-size: 28px;
  color: #ffd700;
}

.footer-logo h3 {
  margin: 0;
  font-size: 22px;
  color: #ffd700;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #ddd;
      font-weight: 800;
          text-align: justify;
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 15px;
  color: #ffd700;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ffd700;
  position: absolute;
  bottom: -5px;
  left: 0;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
  font-weight: 800;
}

.footer-col ul li a:hover {
  color: #ffd700;
  padding-left: 5px;
}

/* SOCIAL */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
  transform: translateY(-3px);
}

/* SHLOK STRIP */
.footer-strip {
  text-align: center;
  padding: 15px;
  background: rgba(255,215,0,0.1);
  margin-top: 40px;
  font-size: 14px;
  color: #ffd700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between; /* left & right */
  align-items: center;
  padding: 15px 20px;
  background: #F99200;
  color: #770000;
  font-size: 14px;
}
.footer-botm{
   background: #F99200;
   width:100%
}
/* optional: remove default margin */
.footer-bottom p {
  margin: 0;
  color: #770000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom a {
  margin: 0;
  color: #770000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #770000;
  text-decoration: none;
}

.footer-container p{
  display: flex;

}
/* RESPONSIVE */
@media(max-width:992px){
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/*about section*/
/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ABOUT SECTION */
.about {
  padding: 80px 0;
  background: #fffaf5;
}

/* LAYOUT */
.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 430px;
  overflow: hidden;
}

/* All images */
.about-image .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  opacity: 0;
}

/* Animation one by one */
.about-image .slide:nth-child(1) {
  animation: slider 9s infinite;
}

.about-image .slide:nth-child(2) {
  animation: slider 9s infinite 3s;
}

.about-image .slide:nth-child(3) {
  animation: slider 9s infinite 6s;
}

/* Keyframes */
@keyframes slider {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

/* DOTS STYLE */
.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
}

.owl-dot.active {
  background: #800000;
}
/* IMAGE HOVER ZOOM */
.about-image:hover img {
  transform: scale(1.08);
}

/* TEXT */
.about-text {
  flex: 1;
   text-align: justify;
}

/* HEADING */
.section-title {
font-family: serif;
  font-size: 34px;
  text-align: center;
  color: #800000; /* Mehroon color */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.section-title span {
  display: block;
  font-size: 22px;
  color: #ffd700;
  margin-top: 5px;
}

/* PARAGRAPH */
.about-text p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

/* BUTTON */
.btn-secondary {
  display: inline-block;
    background: linear-gradient(45deg, #800000);
  width: 30%;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #f7931e;
}

/* ANIMATION */
.about-text {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    height: 250px;
  }
}

/*info section*/
.darshan {
  padding: 80px 0;
  background: linear-gradient(135deg, #B10819);
  text-align: center;
}

.darshan-box {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.darshan-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.darshan-item:hover {
  transform: translateY(-8px);
}

.darshan-item h3 {
  color: #800000;
}

.darshan-item p {
  color: #555;
}

/* SECTION */
.divine-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8e6, #ffe6cc);
}

/* BACKGROUND GLOW */
.divine-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,0.3), transparent);
  top: -100px;
  right: -100px;
  filter: blur(80px);
  animation: divineGlow 8s infinite alternate;
}

/* ANIMATION */
@keyframes divineGlow {
  from { transform: translateY(0); }
  to { transform: translateY(50px); }
}

/* CONTAINER */
.divine-container {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
  text-align: justify;
}

/* IMAGE */
.divine-image {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.divine-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.5s;
}

.divine-image:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.divine-content {
  flex: 1;
}

/* TITLE */
.divine-title {
 
  font-size: 34px;
  text-align: center;
  color: #800000;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* TEXT */
.divine-content p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

/* BUTTON */
.divine-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #800000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.divine-btn:hover {
  background-color: #f1a009;
  color: white;
}

/* HOVER EFFECT */
.divine-section:hover {
  box-shadow: inset 0 0 80px rgba(255,215,0,0.2);
}

/* RESPONSIVE */
@media(max-width:992px){
  .divine-container {
    flex-direction: column;
  }

  .divine-image img {
    height: 300px;
  }
}

/*trevel cards*/
/* Section Background */
.about-travel {
  position: relative;
  padding: 80px 20px;
 background: linear-gradient(135deg, #ffffff, #ffffff);
  overflow: hidden;
}

/* Big Ganesh Background */
.ganesh-bg {
  position: absolute;
  font-size: 200px;
  opacity: 0.05;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* Title */
.section-title {
font-family: serif;
  font-size: 34px;
  text-align: center;
  color: #800000; /* Mehroon color */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.section-title span {
  display: block;
  font-size: 16px;
  color: #777;
  margin-top: 5px;
}

/* About Box */
.about-box {
  max-width: 800px;
  margin: 20px auto 50px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}
.about-box p{
  width: 100%;
  text-align: justify;
}

/* Grid */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

/* Card */
.travel-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Image inside card */
.travel-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* Title */
.travel-card h3 {
  font-size: 18px;
  color: #802d00;
  margin-bottom: 8px;
}

/* Text */
.travel-card p {
  font-size: 14px;
  color: #555;
}

/* Hover Effect */
.travel-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Shine Effect */
.travel-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: rotate(25deg);
  transition: 0.5s;
}

.travel-card:hover::before {
  top: 100%;
  left: 100%;
}

/*event section*/
.events {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
  background: url('../images/ganesh\ image\(1\).webp') no-repeat center/cover;
  background-attachment: fixed;
}


/* ANIMATED OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
background: linear-gradient(
  270deg,
  rgba(243, 233, 173, 0.9),
  rgba(230, 140, 5, 0.75),
  #f7f2dada);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
}

/* ANIMATION */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* CONTENT */
.events .container {
  position: relative;
  z-index: 2;
}

/* TIMELINE */
.timeline {
  margin-top: 50px;
  padding-left: 30px;
  border-left: 3px solid #a13b00;
}

/* ITEM */
.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

/* DOT */
.timeline-dot {
  position: absolute;
  left: -10px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: #a13b00;
  border-radius: 50%;
  box-shadow: 0 0 10px #a13b00;
}

/* CONTENT BOX */
.timeline-content {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

/* HOVER */
.timeline-content:hover {
  transform: translateX(10px);
}

/* HEADING */
.timeline-content h3 {
  color: #a13b00;
}

/* FLOATING PARTICLES */
.particles::before,
.particles::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #a13b00, transparent);
  opacity: 0.3;
  animation: float 6s infinite alternate;
}

.particles::before {
  top: 10%;
  left: 10%;
}

.particles::after {
  bottom: 10%;
  right: 10%;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-40px); }
}

/* RESPONSIVE */
@media(max-width:768px){
  .timeline {
    padding-left: 20px;
  }
}

/*ganesh section*/
/* SECTION */
.ganesh-hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #fff8e6, #ffe6cc); /* light bg */
  overflow: hidden;
  color: #333;
  text-align: center; /* center content */
}

/* BIG BACKGROUND TEXT */
.bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 130px;
  font-weight: bold;
  color: rgba(156, 2, 2, 0.06); /* light mehroon */
  white-space: nowrap;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 6px;
}

/* CONTENT CENTER */
.hero-content {
  position: relative;
  max-width: 750px;
  margin: auto;
  z-index: 2;
}

/* HEADING */
.hero-content h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #800000; /* dark mehroon */
}

/* TEXT */
.hero-content p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #852a00;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 25px;
    background: linear-gradient(45deg, #800000);

  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

/* BUTTON HOVER */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 🔥 HOVER EFFECT */
.ganesh-hero:hover .bg-text {
  transform: translate(-50%, -50%) scale(1.1);
  color: rgba(128, 0, 0, 0.1);
  transition: 0.5s;
}

/* SOFT GLOW */
.ganesh-hero:hover {
  box-shadow: inset 0 0 80px rgba(255, 215, 0, 0.2);
}

/* RESPONSIVE */
@media(max-width:768px){
  .bg-text {
    font-size: 60px;
  }

  .hero-content h2 {
    font-size: 24px;
  }
}

/*blog section*/
.blogs {
  padding: 80px 0;
  background: #fff7f2;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: 0.4s;
}

/* HOVER */
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(128,0,0,0.2);
}

/* IMAGE */
.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

/* IMAGE HOVER ZOOM */
.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

/* CONTENT */
.blog-content {
  padding: 20px;
}

/* META */
.blog-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

/* TITLE */
.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #800000;
}

/* TEXT */
.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* BUTTON */
.blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  min-width: 140px;   /* better than fixed width */
  height: 45px;
  background-color: #800000;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-btn:hover {
  background: #ff9900;
  color: #ffffff;
}

/* RESPONSIVE */
@media(max-width:992px){
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.container {
  width: 90%;
  margin: auto;
}
.about-hero {
  background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('../images/banner.webp');

  background-size: cover;        /* fills full section */
  background-position: center;   /* center image properly */
  background-repeat: no-repeat;
  color: #ffc400;
  text-align: center;
  min-height: 200px;             /* ensures proper height */
}
.about-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* about SECTIONS */
.about-section {
  padding: 60px 0;
  background: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  color: #800000;
  margin-bottom: 15px;
  font-size: 28px;
}

.about-content p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
  text-align: justify;
}

/* HIGHLIGHTS */
.about-highlights {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.highlight {
  background: #fff5e6;
  padding: 15px;
  border-radius: 10px;
  flex: 1;
  min-width: 180px;
}

.highlight h4 {
  margin-bottom: 5px;
  color: #800000;
}

/* BUTTON */
.about-btn {
  display: inline-flex;         /* more stable than inline-block */
  justify-content: center;      /* center text horizontally */
  align-items: center;          /* center text vertically */
  margin-top: 20px;
  background: #800000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
  width: 180px;                 /* fixed width (recommended) */
  /* OR use max-width instead of % */
}

.about-btn:hover {
  background: #f1a009;
  color: white;
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 22px;
  }
}

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 26px;
  }

  .card {
    width: 100%;
  }
}

/*history section about*/
.history-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: #800000;
  font-size: 28px;
}

.section-header p {
  color: #666;
  font-size: 14px;
}

/* WRAPPER */
.history-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  
}
.history-section{
    background: linear-gradient(135deg, #fff8e6, #ffe6cc);

}

/* IMAGE */
.history-image {
  flex: 1;
}

.history-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* CONTENT */
.history-content {
  flex: 1;
  position: relative;
  padding-left: 20px;
}

/* TIMELINE LINE */
.history-content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #800000;
}

/* ITEMS */
.timeline-item {
  margin-bottom: 25px;
  padding-left: 15px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #800000;
  border-radius: 50%;
}

.year {
  font-weight: bold;
  color: #800000;
  display: block;
  margin-bottom: 5px;
}

.timeline-item p {
  color: #444;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .history-wrapper {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 22px;
  }
}

/*about cards*/
/* COMMON */
section {
  padding: 60px 0;
  text-align: center;
}

h2 {
  color: #800000;
  margin-bottom: 30px;
}

/* WHY SECTION */
/* SECTION BACKGROUND */
.why-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  position: relative;
  overflow: hidden;
}

/* OPTIONAL DECORATIVE SHAPE */
.why-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 102, 0, 0.2);
  border-radius: 50%;
}

/* HEADING */
.why-section h2 {
  text-align: center;
  color: #800000;
  font-size: 30px;
  margin-bottom: 40px;
}

/* CARDS CONTAINER */
.why-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CARD DESIGN (GLASS EFFECT) */
.why-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 25px;
  width: 300px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.4);
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ICON */
.icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* TEXT */
.why-card h3 {
  color: #800000;
  margin-bottom: 10px;
}

.why-card p {
  color: #444;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-card {
    width: 100%;
  }

  .why-section h2 {
    font-size: 24px;
  }
}

/* CTA SECTION */
.cta-section {
  position: relative;
  background: url('../images/ctaimg.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  transition: transform 0.6s ease;
}
.cta-section:hover {
  transform: scale(1.05);
}

/* OVERLAY */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  transition: 0.4s;
}

/* 🔥 OVERLAY LIGHT EFFECT */
.cta-section:hover .cta-overlay {
  background: rgba(0,0,0,0.4);
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.cta-section p {
  margin-bottom: 20px;
  font-size: 16px;
}

/* BUTTON */
.cta-btn {
   background: linear-gradient(45deg, #800000);

  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* 🔥 BUTTON HOVER */
.cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.5);
}

/* 🔥 BUTTON SHINE EFFECT */
.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: 0.6s;
}

.cta-btn:hover::before {
  left: 100%;
}

/* 🔥 OPTIONAL FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.cta-btn {
  animation: float 3s ease-in-out infinite;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 15px;
  }

  .cta-section h2 {
    font-size: 24px;
  }

  .cta-section p {
    font-size: 14px;
  }

  .cta-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* TIMING SECTION */
.timing-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff7f0, #ffe6cc);
  text-align: center;
}

.section-header h2 {
  color: #a12000;
  font-size: 28px;
}

.section-header p {
  color: #666;
  margin-bottom: 30px;
}

/* CARDS */
.timing-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.timing-card {
  background: #fff;
  padding: 25px;
  width: 260px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* ICON */
.timing-card .icon {
  font-size: 35px;
  margin-bottom: 10px;
}

/* HOVER EFFECT */
.timing-card:hover {
  transform: translateY(-10px);
}

/* SPECIAL COLORS */
.timing-card.open {
  border-top: 5px solid #faae0b;
}

.timing-card.close {
  border-top: 5px solid #a72700;
}

/* TEXT */
.timing-card h3 {
  color: #333;
  margin-bottom: 10px;
}

.timing-card p {
  font-size: 16px;
  font-weight: bold;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 24px;
  }

  .timing-card {
    width: 100%;
  }
}


/*feature section*/
.features-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* HEADER */
.section-header h2 {
  color: #833400;
  font-size: 30px;
  margin-bottom: 10px;
}

.section-header p {
  color: #b30000;
  margin-bottom: 40px;
}

/* CARDS */
.features-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD DESIGN */
.feature-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  padding: 25px;
  width: 280px;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.4);
  position: relative;
}

/* ICON */
.feature-card .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* TEXT */
.feature-card h3 {
  color: #bd4b00;
  margin-bottom: 10px;
}

.feature-card p {
  color: #990909;
  line-height: 1.6;
}

/* 🔥 HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* 🔥 GLOW BORDER EFFECT */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #973c00, transparent);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* MOBILE */
@media (max-width: 768px) {
  .feature-card {
    
    width: 100%;
  }

  .section-header h2 {
    font-size: 24px;
  }
}

/* SECTION BACKGROUND */
.features-section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;

  /* 🔥 animated gradient */
  background: linear-gradient(-45deg, #c27800, #ffce84, #fa8e63, #ffe0b2);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
}

/* 🔥 GRADIENT ANIMATION */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 🔥 FLOATING STICKERS */
.features-section::before,
.features-section::after {
  position: absolute;
  font-size: 40px;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

/* TOP LEFT STICKER */
.features-section::before {
  content: "🕉️";
  top: 20px;
  left: 20px;
}

/* BOTTOM RIGHT STICKER */
.features-section::after {
  content: "✨";
  bottom: 20px;
  right: 20px;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* video section*/
.video-gallery {
  padding: 60px 20px;
  background: #f9f9f9;
}

.video-gallery .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #7a1f1f;
  font-weight: 600;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.video-box {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: #000;
}

.video-box video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
/*event page css*/
/* SECTION */
.events-section {
  padding: 90px 0;
  background: #fff7f2;
}

/* GRID */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.event-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;

  transition: 0.4s;
}

/* IMAGE */
.event-image {
  position: relative;
}

.event-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* DATE BADGE */
.event-date {
  position: absolute;
  top: 15px;
  left: 15px;

  background: #800000;
  color: #fff;

  padding: 8px 10px;
  border-radius: 10px;
  text-align: center;
}

.event-date span {
  font-size: 18px;
  font-weight: bold;
  display: block;
}

.event-date small {
  font-size: 11px;
}

/* CONTENT */
.event-content {
  padding: 18px;
}

.event-content h3 {
  color: #7b1e1e;
  margin-bottom: 8px;
  font-size: 18px;
}

.event-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

/* BUTTON */
.event-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;

  background: #800000;
  color: #fff;
  font-size: 13px;
  text-decoration: none;

  transition: 0.3s;
}

.event-btn:hover {
  background: #ff9900;
}

/* HOVER */
.event-card:hover {
  transform: translateY(-10px);
  
}

/*feature events*/
.featured-event {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff3e6, #ffe0cc);
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.featured-text h2 {
  color: #800000;
  margin-bottom: 10px;
}

.featured-text p {
  color: #555;
  margin-bottom: 15px;
}

.event-info span {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.featured-image img {
  width: 100%;
  border-radius: 15px;
}

/*event gallery*/
.event-gallery {
  padding: 80px 0;
  background: #fff7f2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/*gallery page css*/
/* FILTER BUTTON */
.filter-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.filter-buttons button {
  padding: 8px 18px;
  margin: 5px;
  border: none;
  border-radius: 20px;
  background: #eee;
  cursor: pointer;
  transition: 0.3s;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: #800000;
  color: #fff;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

/* IMAGE CARD */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.gallery-item::after {
  content: "🔍 View";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* VIDEO */
.video-gallery {
  padding: 80px 0;
  background: #fff7f2;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.video-grid iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

/*devotee section*/
.devotee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.devotee-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.devotee-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.devotee-card p {
  padding: 10px;
  font-size: 14px;
}

/*feature blog page css*/
/*feature blog*/
/* SECTION */
.featured-blog {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff7f2, #ffe9d6);
  text-align: justify;
}

/* GRID */
.featured-blog-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGE BOX */
.featured-blog-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* IMAGE */
.featured-blog-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* HOVER ZOOM */
.featured-blog-img:hover img {
  transform: scale(1.1);
}

/* TEXT BOX */
.featured-blog-text {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TAG */
.featured-blog-text .tag {
  display: inline-block;
  background: #ff9900;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* HEADING */
.featured-blog-text h2 {
  font-size: 28px;
  color: #800000;
  margin-bottom: 10px;
}

/* PARAGRAPH */
.featured-blog-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* META */
.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  background: linear-gradient(45deg, #800000);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  width: 30%;
}

.btn-secondary:hover {
  background: #ff9900;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:768px){
  .featured-blog-content {
    grid-template-columns: 1fr;
  }

  .featured-blog-img img {
    height: 250px;
  }
}

/*blog grid section*/
/* SECTION */
.blog-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff);
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

/* TAG */
.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #832a00;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
}

/* OVERLAY EFFECT */
.blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* CONTENT */
.blog-content {
  padding: 20px;
}

.blog-content .date {
  font-size: 13px;
  color: #888;
}

.blog-content h3 {
  color: #800000;
  margin: 8px 0;
  font-size: 20px;
}

.blog-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* BUTTON */
.read-btn {
 display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  background: linear-gradient(45deg, #800000);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  width: 50%;
}

.read-btn:hover {
  background: #ff9900;
  transform: translateY(-2px);
};


.read-btn:hover {
  color: #800000;
}

/* HOVER EFFECT */
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-card:hover img {
  transform: scale(1.1);
}

/*quote section*/
.quotes-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fd8f21, #ffcc70, #fff3e0);
  text-align: center;
}

/* BOX */
.quotes-box {
  max-width: 700px;
  margin: auto;
  padding: 40px;

  background: linear-gradient(135deg, #ffffff, #fff5e6);
  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(255,153,0,0.3);
}

/* TEXT */
.quotes-box p {
  font-size: 22px;
  line-height: 1.8;
  color: #800000;
  font-weight: 500;
}

/* HEADING */
.section-title {
  color: #800000;
}
.section-name{
 
  font-size: 34px;
  text-align: center;
  color: #ffffff; /* Mehroon color */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/*contact page css*/
/* CONTACT INFO */
.contact-info {
  padding: 60px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.contact-card h3 {
  color: #800000;
  margin-bottom: 10px;
}

.contact-card p {
  color: #555;
}

.contact-card:hover {
  transform: translateY(-8px);
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.contact-form h2 {
  color: #800000;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff9900;
}

/* MAP */
.contact-map {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  /* Golden border */
  border: 2px solid #ffd700;
  transition: 0.3s ease;
}

/* IFRAME */
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  transition: transform 0.5s ease;
}

/* HOVER EFFECT */
.contact-map:hover {
  transform: translateY(-5px);
}

/* ZOOM EFFECT */
.contact-map:hover iframe {
  transform: scale(1.05);
}

/* OVERLAY */
.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}


/*form section*/
/* SECTION */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff);
}

/* WRAPPER */
.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* FORM CARD */
.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: 0.3s;
}

/* HOVER EFFECT */
.contact-form:hover {
  transform: translateY(-5px);

}

/* HEADING */
.contact-form h2 {
  color: #800000;
  margin-bottom: 10px;
}

.form-subtext {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

/* INPUT GROUP */
.form-group {
  margin-bottom: 3px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #800000;
  text-align: justify;
}

/* INPUTS */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;

  transition: 0.3s;
}

/* FOCUS EFFECT */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 8px rgba(255,140,0,0.4);
}

/* BUTTON */
.btn-secondary {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff8c00, #ff3c00);
  color: #fff;
  font-size: 16px;
  cursor: pointer;

  transition: 0.3s;
}

/* BUTTON HOVER */
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 60, 0, 0.4);
}

/* MAP */
.contact-map {
  height: 100%;
  min-height: 400px;
  border-radius: 15px;
  overflow: hidden;

}

/* MAP ZOOM */
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;

}

.contact-map:hover iframe {
  transform: scale(1.00);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .contact-form {
    padding: 25px;
  }
}



/* BUTTON */
.btn-secondary {
  width: 27%;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(45deg, #800000);
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}

.btn-secondary:hover {
  background: linear-gradient(45deg, #ff9900);
}

.btn-second {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(45deg, #800000);
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}

.btn-second:hover {
  background: linear-gradient(45deg, #ff9900);
}

.media-gallery {
  padding: 40px;
  text-align: center;
    background: linear-gradient(135deg, #ffffff, #ffffff); 

}

.gallery-title {
font-family: serif;
  font-size: 34px;
  text-align: center;

  color: #800000; /* Mehroon color */

  /* REMOVE these if present */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;

  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.media-video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
}

/*banner video*/
/* ===== SECTION ===== */
.banner-video {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

/* ===== VIDEO ===== */
.banner-video-media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

/* ===== OVERLAY ===== */
.banner-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background:none;

  z-index: 2;
}

/* ===== TITLE ===== */
.banner-title {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .banner-video {
    height: 55vh;
  }

  .banner-title {
    font-size: 26px;
  }
}

/*myth section*/
.myth-section {
  padding: 80px 20px;
  background: linear-gradient(135deg,#fff8f2,#f5ede4);
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.container {
  max-width: 900px;
  margin: auto;
}

/* CARD */
.myth-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border-left: 6px solid #800000;
}

/* HEADING */
.myth-card h2 {
  font-size: 32px;
  color: #800000;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  position: relative;
}

/* UNDERLINE EFFECT */
.myth-card h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #D4AF37;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* TEXT */
.myth-card p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 15px;
  font-size: 16px;
}

/* HIGHLIGHT WORDS */
.myth-card span {
  color: #D4AF37;
  font-weight: 600;
}

/* MOBILE */
@media(max-width:768px){
  .myth-card {
    padding: 25px;
  }

  .myth-card h2 {
    font-size: 26px;
  }
}
/*historey section*/
.history-section {
  padding: 80px 20px;
  background: linear-gradient(135deg,#fff8f2,#f3e9dd);
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* HEADING */
.history-head {
  text-align: center;
  margin-bottom: 50px;
}

.history-head h6 {
  color: #D4AF37;
  font-size: 16px;
}

.history-head h2 {
  font-size: 36px;
  color: #800000;
  font-family: 'Playfair Display', serif;
}

/* MAIN BOX */
.history-box {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* TIMELINE */
.timeline {
  flex: 1;
  border-left: 3px solid #800000;
  padding-left: 20px;
}

.time-item {
  margin-bottom: 30px;
  position: relative;
}

.time-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #800000;
  border-radius: 50%;
}

.time-item span {
  font-weight: 600;
  color: #800000;
}

.time-item p {
  color: #555;
  font-size: 14px;
}

/* HIGHLIGHT */
.time-item.highlight span {
  color: #D4AF37;
}

/* CONTENT */
.history-content {
  flex: 2;
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.history-content p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.8;
}

/* HIGHLIGHT TEXT */
.history-content span {
  color: #D4AF37;
  font-weight: 600;
}

/* MOBILE */
@media(max-width:768px){
  .history-box {
    flex-direction: column;
  }
}

/*ritual section*/
.ritual-section {
  padding: 80px 20px;
  background: linear-gradient(135deg,#fff8f2,#f3e6d8);
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* HEADING */
.ritual-head {
  text-align: center;
  margin-bottom: 50px;
}

.ritual-head h6 {
  color: #D4AF37;
  font-size: 16px;
}

.ritual-head h2 {
  font-size: 34px;
  color: #800000;
  font-family: 'Playfair Display', serif;
}

.ritual-head p {
  color: #777;
}

/* GRID */
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

/* CARD */
.ritual-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border-top: 4px solid #800000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.ritual-card:hover {
  transform: translateY(-8px);
  border-top: 4px solid #f88900;
}

/* TITLE */
.ritual-card h3 {
  color: #800000;
  margin-bottom: 10px;
}

/* TEXT */
.ritual-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* FOOT */
.ritual-footer {
  text-align: center;
  margin-top: 40px;
}

.ritual-footer p {
  color: #444;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width:992px){
  .ritual-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .ritual-grid {
    grid-template-columns: 1fr;
  }
}

/*testimonial section*/
.testimonial-section {
  padding: 60px 20px;
  background: #f9f6f2;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #800000;
  margin-bottom: 40px;
}

/* Cards layout */
.testimonial-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Single card */
.testimonial {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  width: 320px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.3s;
}

/* Hover effect */
.testimonial:hover {
  transform: translateY(-10px);
}

/* Quote icon */
.quote {
  font-size: 40px;
  color: #ffd700;
  position: absolute;
  top: 15px;
  left: 20px;
}

/* Text */
.testimonial p {
  font-size: 15px;
  color: #555;
  margin: 30px 0 20px;
  line-height: 1.6;
}

/* User */
.user h4 {
  color: #800000;
  margin: 0;
}

.user span {
  font-size: 13px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Scroll reveal effects */
.scroll-reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-reveal.delay-1 { transition-delay: 0.08s; }
.scroll-reveal.delay-2 { transition-delay: 0.16s; }
.scroll-reveal.delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-visible,
  .main-header,
  .hero-bg {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Mobile layout fixes */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .hamburger span {
    background: #ffffff;
  }

  .nav-menu {
    top: 64px;
    height: calc(100vh - 64px);
    background: #fff7ef;
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-menu ul {
    margin-top: 6px;
  }

  .nav-menu ul li {
    padding: 0;
    border-bottom: 1px solid #f0d3b2;
  }

  .nav-menu a {
    display: block;
    padding: 14px 18px;
    color: #800000;
    font-weight: 700;
  }

  .nav-menu a.active {
    color: #b10819;
  }

  .darshan-box {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .darshan-item {
    width: min(100%, 360px);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .footer-container p {
    display: block;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Get In Touch form button fix */
.contact-section .contact-form .btn-secondary {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

/* Divine forms bullet alignment fix */
.divine-content ul {
  margin: 14px 0 20px;
  padding-left: 22px;
  list-style-position: outside;
  text-align: left;
}

.divine-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}
