/********** Template CSS **********/
:root {
    --primary: #EAA636;
    --secondary: #545454;
    --light: #FDF5EB;
    --dark: #1E1916;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

 .a-contact{max-width:600px; margin:20px auto; background:#fff; padding:16px; border-radius:8px; box-shadow:0 4px 12px rgba(0,0,0,0.06)}
.a-contact-row{display:flex; align-items:center; gap:12px}
.a-contact-icon{flex:0 0 44px; height:44px; display:grid; place-items:center; background:#eef2f3; border-radius:8px}
.a-contact-label{font-size:13px; color:#6b7280}
.a-contact-value{font-size:16px; font-weight:600; margin-top:2px}
a.a-contact-value{color:#0b7285; text-decoration:none}
.a-contact-address{margin-top:10px; font-size:15px; color:#111827}


@media (max-width:480px){
.a-contact-row{flex-direction:row}
.a-contact-value{font-size:15px}
.a-contact{padding:12px}
}




/***bhajan lyrics**/

  .lyricp{
     white-space: pre-line;
  }
  
      .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .card:hover {
      transform: scale(1.03);
    }

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

    .card-title {
      padding: 12px;
      text-align: center;
      font-weight: bold;
      background: #fdf5e6;
      color: #6b4226;
    }

    /* Popup Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.7);
      padding: 40px 20px;
    }

    .modal-content {
      background: #fffaf0;
      margin: auto;
      padding: 20px;
      margin-top: 150px;
      border-radius: 12px;
      max-width: 600px;
      color: #4b2e2e;
      font-size: 16px;
      line-height: 1.6;
      position: relative;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 22px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
    }

    @media(max-width:600px){
      .modal-content {
        width: 95%;
      }
    }
  
/**end**/


/***my slider **/

.slider {
    position: relative;
    width: 100%;
    height: 90vh;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }
  .slide {
    display: none;
    width: 100%;
    height: 100%;
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 6s ease-in-out infinite;
  }
  @keyframes zoom {
    0% { transform: scale(1);}
    50% { transform: scale(1.08);}
    100% { transform: scale(1);}
  }
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px 18px;
    color: white;
    font-weight: bold;
    font-size: 22px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    user-select: none;
    transition: 0.3s;
  }
  .prev:hover, .next:hover { background: rgba(0,0,0,0.8); }
  .prev { left: 15px; }
  .next { right: 15px; }
  .dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
  }
  .dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .active, .dot:hover { background-color: #ffffff; }
  @media (max-width: 768px) {
    .slider {
      height: 90vh;
      border-radius: 0;
    }
    .prev, .next {
      font-size: 18px;
      padding: 10px;
    }
  }
    /***end slider ***/


    /**my temple adress**/

 .temple-section {
  padding: 20px;
  font-family: "Noto Sans Devanagari", sans-serif;
}
.temple-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  overflow: hidden;
}
.temple-info {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}
.temple-info h2 {
  color: #b22222;
  font-size: 20px;
  margin-bottom: 8px;
}
.address {
  font-size: 14px;
  margin-bottom: 12px;
  color: #444;
}
.temple-table {
  width: 100%;
  border-collapse: collapse;
}
.temple-table th {
  text-align: left;
  background: #f8e6e6;
  color: #b22222;
  padding: 8px;
}
.temple-table td {
  padding: 8px;
  border-bottom: 1px solid #eee;
}
.call-btn {
  display: inline-block;
  background: #b22222;
  color: white;
  padding: 5px 10px;
  margin: 2px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}
.call-btn:hover {
  background: #ff4444;
}
.temple-map {
  flex: 1;
  min-width: 300px;
}
@media (max-width: 768px) {
  .temple-card {
    flex-direction: column;
  }
  .temple-map iframe {
    height: 250px;
  }
}
    /**end**/

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}



/**my scc**/


/**my buttnn**/
.btn-3d {
      padding: 14px 28px;
      font-size: 15px;
      font-weight: bold;
      color: #5b3306;
      background:  #ffd502;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      /*box-shadow: 0 6px #a10202;        neeche shadow = 3D look */
      transition: all 0.15s ease;
      display: block;
      margin: 20px auto;       /* button ko center me lane ka shortcut */
      padding: 7px 13px;
    }

    .btn-3d:hover {
      background:  #ff7d03;
    }

    .btn-3d:active {
      transform: translateY(4px);   /* button dab gaya jaisa lage */
      box-shadow: 0 2px #2c2680;    /* shadow kam ho jayegi */
    }


/**membership form**/

   .form-section {
  padding: 40px 10px;
  background-color: #f8f9fa;
}

/* Container */
.form-container {
  max-width: 700px;
  margin: auto;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Heading */
.form-container h2 {
  text-align: center;
  font-size: 24px;
  color: #075e54;
  margin-bottom: 20px;
}

/* Grid Layout */
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-grid input,
.form-grid textarea {
  flex: 1 1 48%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f9f9f9;
}

/* Make textarea full width */
.form-grid textarea {
  flex: 1 1 100%;
  resize: vertical;
}

/* Button */
.b button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #fff81f;
  color: rgb(0, 0, 0);
  border: none;
  font-size: 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #091430;
}

/* Responsive */
@media (max-width: 600px) {
  .form-grid input,
  .form-grid textarea {
    flex: 1 1 100%;
  }
}
/**end**/

/**upcomng event slider**

.event-slider-section {
  background: #fff8e1;
  padding: 30px 15px;
  text-align: center;
}

.event-title {
  font-size: 22px;
  color: #b35b00;
  margin-bottom: 20px;
}

.event-slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff3cd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.event-slide {
  display: none;
  padding: 25px 15px;
  animation: fade 1s ease-in-out;
}

.event-slide.active {
  display: block;
}

.event-slide h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #d35400;
}

.event-slide p {
  font-size: 16px;
  color: #6c5b3b;
}

@keyframes fade {
  from {opacity: 0.3;}
  to {opacity: 1;}
}

/* Mobile responsive */
/* @media (max-width: 600px) {
  .event-slide h3 {
    font-size: 18px;
  }
  .event-slide p {
    font-size: 14px;
  }
} */

/**end**/

/**new upcong poser evnt **/

.event-slider {
    position: relative;
    max-width: 400px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .event-slide { display: none; }
  .event-slide img {
    width: 100%;
    display: block;
    border-radius: 15px;
  }
  .event-prev, .event-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 12px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    user-select: none;
  }
  .event-prev { left: 10px; }
  .event-next { right: 10px; }
  .event-prev:hover, .event-next:hover { background: rgba(0,0,0,0.8); }
  .event-dots {
    text-align: center;
    margin: 8px 0;
  }
  .event-dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 3px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .event-active, .event-dot:hover { background-color: #000; }
  @media (max-width: 600px) {
    .event-slider { max-width: 90%; }
  }

/**end**/

/**kirtan booking from**/
.kirtan-booking-form {
  max-width: 350px;
  margin: 20px auto;
  padding: 20px;
  background: #fffbe6;
  border: 2px solid #ffd700;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
  text-align: center;
}
.kirtan-booking-form h3 {
  margin-bottom: 15px;
  color: #a76c00;
}
.kirtan-booking-form input {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.kirtan-booking-form button {
  background-color: #fff81f;
  color: rgb(7, 2, 2);
  border: none;
  padding: 10px 18px;
  margin-top: 10px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}
.kirtan-booking-form button:hover {
  background-color: #091430;
}
/**end**/

/**workers list**/

.main-heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #8B0000; /* Dark devotional red */
  font-family: 'Segoe UI', sans-serif;
}

  .committee-container {
    max-width: 1000px;
    margin: auto;
    padding: 30px 15px;
    font-family: 'Segoe UI', sans-serif;
  }

  .committee-group {
    background-color: #fffaf0; /* हल्का केसरिया */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .committee-group h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8b4513; /* भूरा रंग (devotional) */
    border-left: 5px solid #8b4513;
    padding-left: 10px;
  }

  .member-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    margin: 8px 0;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    flex-wrap: wrap;
  }

  .member-card span {
    font-size: 16px;
    color: #333;
  }

  .member-card a {
    text-decoration: none;
    background-color: #d97706; /* केसरिया */
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.2s ease;
  }

  .member-card a:hover {
    background-color: #b45309; /* डार्क केसरिया */
  }

  @media (max-width: 600px) {
    .member-card {
      flex-direction: row-reverse;
      justify-content: space-between;
    }

    .member-card span {
      order: 2;
    }

    .member-card a {
      order: 1;
    }
  }
/**end**/

/**p**/

.pp{
    text-align: justify;
    
}
/**end**/



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: var(--light);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.fixed-top {
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
   /** background: rgba(0, 0, 0, .5);**/
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 40px;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.page-header {
    margin-bottom: 6rem;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../pic/b1.jpeg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}


/*** Product ***/
.product-item {
    transition: .5s;
}

.product-item:hover {
    background: var(--primary) !important;
}

.product-item:hover * {
    color: var(--light);
}

.product-item:hover .border-primary {
    border-color: var(--light) !important;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .product-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

/* .team-item:hover .team-title {
    top: -100px;
} */

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #111111;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}