/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px !important;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
}


/* :::::::: social media icon  css :::::::: */
/* :::::::: social media icon  css :::::::: */
/* :::::::: social media icon  css :::::::: */


.social-bar {
  position: fixed;
  top: 80%;
  left: 0;
  transform: translateY(-50%);
  z-index: 999;
}



.social-bar a i {
  font-size: calc(20px * var(--multi));
  width: 40px;
  text-align: center;
  padding-left: 8px;
}
.social-bar a {
  display: flex;
  align-items: center;
  width: 40px;
  height: 50px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 0 10px 10px 0;
}





.social-bar a span {
  white-space: nowrap;
  padding: 0 10px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-100%);
 font-size: calc(14px * var(--multi));
}

.social-bar a:hover {
  width: 150px;
}

.social-bar a:hover span {
  opacity: 1;
  transform: translateX(0);
}

.facebook {
  background: #3b5998;
}

.instagram {
  background: #00acee;
}

.whatsapp {
  background: #25d366;
}

.youtube {
  background: #ff0000;
}

/* :::::::: Carousel  css :::::::: */
/* :::::::: Carousel  css :::::::: */
/* :::::::: Carousel  css :::::::: */

/* Overlay Image */
.overlay-img {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 100px;
  height: auto;
  z-index: 15;
  pointer-events: none;
}

.center-overlay-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: auto;
  z-index: 15;
  pointer-events: none;
}

.carousel {
  position: relative;
  max-width: 100%;
  max-height: 90vh;
  overflow: hidden;
  margin: 0 auto;
}

.carousel-images {
  display: flex;
  width: 100vw;
  transition: transform 0.5s ease-in-out;
}

.carousel-images img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  flex-shrink: 0;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* :::::::: Pilgrimcard  css :::::::: */
/* :::::::: Pilgrimcard  css :::::::: */
/* :::::::: Pilgrimcard  css :::::::: */



.intro-heading {
  text-align: center;
  margin: 15px 0;
  color: #2A3095;
  font-size: 40px;
}

.Pilgrimcard-container {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 15px auto;
  /* background: url(./Images/image3.jpg) cover/center; */
}


.Pilgrimcard {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  height: 100%;
  /* Ensure equal height for all cards */
}

.Pilgrimcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: sandybrown;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.card-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.Pilgrimcard a {
  display: inline-block;
  padding: 8px 16px;
  background: #0066cc;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  margin-top: auto;
}

.Pilgrimcard a:hover {
  background: #004d99;
}

/* :::::::: content section   css :::::::: */
/* :::::::: content section   css :::::::: */
/* :::::::: content section   css :::::::: */





.container_about {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 10px;
}

.section-text {
  width: 50%;
}

.section-text h2 {
  
   font-size: calc(22px * var(--multi));
  color: #005a9c;
  margin-bottom: 10px;
}

.section-text h1 {
  
    font-size: calc(36px * var(--multi));
  color: #002147;
  margin-bottom: 20px;
}

.section-text p {
  
  font-size: calc(16px * var(--multi));
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.section-image {
  width: 50%;
  text-align: right;
}

.section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px 0 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* :::::::: MYTHOLOGICAL card   css :::::::: */
/* :::::::: MYTHOLOGICAL card   css :::::::: */
/* :::::::: MYTHOLOGICAL card   css :::::::: */



.mythCard-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem;
  background-color: #f9f9f9;
}

.mythCard {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 250px;
  height: 350px;
  /* Fixed height */
  display: flex;
  flex-direction: column;
  position: relative;
}

.mythCard img {
  width: 100%;
  height: 130px;
  /* Reduced to fit in 350px card */
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.mythCard-content {
  padding: 0.5rem 1rem 3rem;
  /* Bottom padding for button space */
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mythCard-content h3 {
  margin: 0 0 0.5rem;
  color: #222;
  
    font-size: calc(1rem * var(--multi));
  text-align:center;
}

.mythCard-content p {
  font-size: calc(0.95rem * var(--multi));
  color: #444;
  line-height: 1.3rem;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify
}

.mythCard a {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(to right, #3b5998, #6b9ac4);
  color: white;
  font-size: calc(14px * var(--multi));
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.mythCard a:hover {
  background: linear-gradient(135deg, #0056b3, #003f7f);
  transform: translate(-50%, -2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #007bff;
  border: 1px solid #007bff;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
  background-color: #007bff;
  color: white;
}




/* :::::::: Footer   css :::::::: */
/* :::::::: Footer   css :::::::: */
/* :::::::: Footer   css :::::::: */


footer {
  background-color: #002147;
  color: white;
  padding: 2rem 1rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: auto;
}

.footer-section h4 {
 font-size: calc(1.1rem * var(--multi));
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.4rem;
}

.footer-section div {
  margin-bottom: 0.4rem;
}

.footer-section a {
  text-decoration: none;
  color: white;
}

.icons i {
  margin: 0 0.5rem;
  font-size: calc(1.2rem * var(--multi));
  color: white;
}

footer hr {
  margin: 1rem 0;
  border-top: 1px solid #555;
}

footer .copyright {
  text-align: center;
  font-size: calc(0.85rem * var(--multi));
}

footer .visitor-counter {
  text-align: center;
}



/* :::::::: Gallery css :::::::: */
/* :::::::: Gallery css :::::::: */
/* :::::::: Gallery css :::::::: */


/* Photo Gallery */
.gallery-section {
  max-width: 1200px;
  margin: 10px auto;
  padding: 10px 20px;
}

.gallery-section h1 {
  text-align: center;
}

.filter-buttons {
  text-align: center;
  margin-bottom: 20px;
}

.filter-buttons button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 16px;
  margin: 4px;
  border-radius: 8px;
  font-size: calc(14px * var(--multi));
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-buttons button:hover,
.filter-buttons button.active {
  background-color: #28a745;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.lightbox-img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: calc(40px * var(--multi));
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  color: white;
  font-size: calc(50px * var(--multi));
  cursor: pointer;
  user-select: none;
}






/* :::::::: video css :::::::: */
/* :::::::: video css :::::::: */
/* :::::::: video css :::::::: */




.video-gallery-section {
  padding-top: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.video-gallery-section h1 {
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;
}


.video-folder {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, opacity 0.3s ease;
}


.video-folder:hover {
  transform: translateY(-5px);
}


.video-folder p {
  color: #0073e6;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: calc(16px * var(--multi));
}


.video-folder iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 6px;
}


.video-filter-buttons {
  text-align: center;
}


.video-filter-buttons button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 16px;
  margin: 4px;
  border-radius: 8px;
  font-size: calc(14px * var(--multi));
  cursor: pointer;
  transition: background-color 0.3s ease;
}


.video-filter-buttons button:hover,
.video-filter-buttons button.active {
  background-color: #28a745;
}


.video-section-heading {
  text-align: center;
  margin: 40px 0 20px;
 font-size: calc(24px * var(--multi));
  color: #002147;
  font-weight: bold;
}




/* :::::::: How to reach css :::::::: */
/* :::::::: How to reach css :::::::: */
/* :::::::: How to reach css :::::::: */





.basic-facilities-section {
  padding: 10px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: calc(2.2rem * var(--multi));
  color: #002147;
  margin-bottom: 30px;

}

.transport-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.transport-card {
  width: 280px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: calc(2.2rem * var(--multi));
  color: #007bff;
  margin-bottom: 10px;
}

.transport-card h3 {
  font-size: calc(1.2rem * var(--multi));
  margin-bottom: 10px;
  color: #222;
}

.transport-card p {
  font-size: calc(0.95rem * var(--multi));
  color: #555;
}

.more-text {
  display: none;
}

.more-text.show {
  display: inline;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.read-more:hover {
  text-decoration: underline;
}

.map-direction-section {
  margin-bottom: 30px;
  margin-top: 50px;
  text-align: center;
}

.map-direction-section h2 {
  padding-top: 10px;
  font-size: calc(1.8rem * var(--multi));
  margin-bottom: 20px;
  color: #002147;
}

.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.map-box {
  width: 100%;
  max-width: 1150px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-button {
  max-width: 1150px;
  background: #007bff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 500;
  margin-bottom: 20px;
}

.map-button:hover {
  background: #0056b3;
}

/* :::::::: Where to stay  css :::::::: */
/* :::::::: Where to stay  css :::::::: */
/* :::::::: Where to stay  css :::::::: */




.table-section {
  padding: 10px 20px;
}

.table-section h2,
.table-section h1 {
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
}


.table-section h2 {
  background-color: rgb(179, 224, 242);
  border-radius: 10px;
  color: #003d66;
  font-size: calc(24px * var(--multi) !important);
}


.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Table styles */
.pilgrimshed-table {
  width: 100%;
  min-width: 375px;
  max-width: 1000px;
  margin: auto;
  border-collapse: collapse;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pilgrimshed-table thead tr {
  background-color: #0056b3;
  color: white;
  text-align: left;
}

.pilgrimshed-table th,
.pilgrimshed-table td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  white-space: nowrap;
}

.pilgrimshed-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.pilgrimshed-table tbody tr:hover {
  background-color: #e6f7ea;
}






/* :::::::: Where to stay css :::::::: */
/* :::::::: Where to stay css :::::::: */
/* :::::::: Where to stay css :::::::: */



.basic-facilities-section {
  
  padding: 10px 20px;
  text-align: center;
  padding-top: 20px;
}

.basic-facilities-section h1 {
  font-size: calc(32px * var(--multi));
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: bold;
}

.map-container {
  display: flex;
  justify-content: center;
}

#map {
  position: relative;
  width: 100%;
  max-width: 1150px;
  /* height: 500px; */
  /* border: 2px solid #ccc; */
  border-radius: 10px;
  overflow: hidden;
}

#map img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#map .mobileMap {
  display: none;
}

#map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-legend {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-size: calc(14px * var(--multi));
}

.map-legend ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.map-legend li {
  margin: 5px 0;
  text-align: left;
  color: #333;
}

.map-legend i {
  color: #0066cc;
  margin-right: 8px;
}

.map-popup {
  position: absolute;
  top: 50px;
  right: 20px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: calc(14px * var(--multi));
  text-align: left;
}

.map-popup .map-btn {
  background-color: #007bff;
  color: white;
  border: none;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.map-popup .map-btn:hover {
  background-color: #0056b3;
}





.intro-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #004080;
  color: white;
}

.intro-section h1 {
  font-size: calc(2.5rem * var(--multi));
}

.intro-section p {
  font-size: calc(1.1rem * var(--multi));
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Image Gallery Section */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 40px 20px;
}

.image-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Swiper Styles for Testimonials */
.swiper-container {
  width: 100%;
  padding: 50px 0;
  background-color: #003366;
  color: white;
}

.swiper-slide {
  background: #002147;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}

.swiper-pagination-bullet {
  background-color: #00bfff;
}

.swiper-pagination-bullet-active {
  background-color: #0062cc;
}

/* Contact Section */
.contact-section {
  background-color: #003366;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: calc(2rem * var(--multi));
  margin-bottom: 20px;
}

.contact-section p {
  font-size: calc(1.1rem * var(--multi));
  margin-bottom: 10px;
}

.contact-section a {
  color: #00bfff;
  text-decoration: none;
  font-weight: bold;
}




.section {
  padding: 40px 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.contact-section h1,
h2 {
  color: #1e3a8a;
  margin-bottom: 20px;
  /* text-align: center; */
}

.contact-section p {
  margin-bottom: 15px;
}

.contact-section a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Intro Section */
.intro-section {
  background-color: #e0f0ff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}


/* :::::::: image page  css :::::::: */
/* :::::::: image page  css :::::::: */
/* :::::::: image page  css :::::::: */


.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.image-gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.03);
}



/* Contact */
.contact-section {
  background-color: #ffffff;
  border-radius: 12px;
  text-align: center;
  padding: 50px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}




/* :::::::: contact us  css :::::::: */
/* :::::::: contact us  css :::::::: */
/* :::::::: contact us  css :::::::: */



.contact-main {
  max-width: 1200px;
  margin: 20px auto;
  padding: 2rem 1rem;
  color: #333;
  padding-top: 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-header h2 {
  font-size: calc(2.5rem * var(--multi));
  color: #1a1a40;
}

.contact-header p {
  font-size: calc(1.1rem * var(--multi));
  color: #555;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card-contact {
  background-color: #e6f0ff;
  border-left: 4px solid #004a99;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
}

.card-contact i {
  font-size: calc(1.5rem * var(--multi));
  color: #004a99;
}

.card-contact h4 {
  margin: 0;
 font-size: calc(1rem * var(--multi));
  color: #004a99;
}

.card-contact a,
.card-contact p {
  margin: 0.25rem 0 0 0;
  color: #333;
  text-decoration: none;
}

.card-contact a:hover {
  text-decoration: underline;
}

.info-section,
.social-section {
  background-color: #f5faff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}
.info-section a{
text-decoration : none;
}

.info-section h3,
.social-section h3 {
  color: #004a99;
  margin-bottom: 1rem;
}

.info-section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: #333;
}


.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links li a {
  color: #004a99;
  text-decoration: none;
  font-weight: 500;
}

.social-links li a:hover {
  text-decoration: underline;
}

/* ========== Mythological page css ==========
 ========== Mythological page css ==========
 ========== Mythological page css ========== */

.myth-heading h1 {
  font-size: calc(32px * var(--multi));  text-align: center;

  margin: 10px 0 0 0;
  padding: 10px 20px;
}


.myth-para {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* bootstrap custom css */

@media (min-width: 1200px) {

  .h3,
  h3 {
    font-size: calc(1.17rem * var(--multi));
    margin-bottom: 0;
  }
}

/* ========== application form css ==========
 ========== application form css ==========
 ========== application form css ========== */



#addForm h2,
h5 {
  color: #0d6efd;
}

.form-section {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  color: white;
}

#previewContainer img {
  max-width: 80px;
  max-height: 80px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 4px;
}


/* ========== submission css ==========
 ========== submission css ==========
 ========== submission css ========== */


.success-box {
  max-width: 600px;
  margin: 100px auto;
  background: white;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.brand-logo {
  width: 70px;
  height: auto;
}

.brand-title {
  font-size: calc(22px * var(--multi));
  font-weight: bold;
  color: #004080;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.success-box h1 {
  color: #2e7d32;
}

.application-id {
  font-size: calc(18px * var(--multi));
  font-weight: bold;
  margin-top: 20px;
  color: #333;
}


/* ========== track css ==========
 ========== track css ==========
 ========== track css ========== */


.track-box {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 40px 30px;
}

.logo-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.logo-text-wrapper img {
  height: 60px;
}

.logo-text-wrapper .logo-title {
  font-size: calc(22px * var(--multi));
  font-weight: 600;
  line-height: 1.2;
}

.logo-text-wrapper small {
  font-size: calc(14px * var(--multi));
  color: #777;
}

/* .btn-green {
  background-color: #28a745;
  color: white;
}

.btn-green:hover {
  background-color: #218838;
}

.btn-blue {
  background-color: #007bff;
  color: white;
}

.btn-blue:hover {
  background-color: #0069d9;
}*/

.btn-center {
  text-align: center;
  margin-top: 20px;
}

.btn-success {
  color: white !important;
}

/* ========== NOC css ==========
 ========== NOC css ==========
 ========== NOC css ========== */
.sdOfficer {
  line-height: 0.6;
}

.text_sd {
  padding-right: 2.2rem;
}

.text_singur {
  padding-right: 2rem;
}

.logo_block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.logo_block img {
  width: 50px;
  height: auto;
}

/* ========== How To Reach Map css ==========
 ========== How To Reach Map css ==========
 ========== How To Reach Map css ========== */


.map-container {
  margin-top: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}



/* ========== HistoricalSignificance css ==========
 ========== HistoricalSignificance css ==========
 ========== HistoricalSignificance css ========== */



.hero-section h1 {
  position: relative;
 font-size: calc(2.8rem * var(--multi));
  z-index: 1;
}

.history-content {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: auto;
}

.history-content h2 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.history-content p {
  line-height: 1.8;
  font-size: calc(1.1rem * var(--multi));
}

.history-highlight {
  background: #f8f9fa;
  padding: 1.5rem;
  border-left: 5px solid #007bff;
  margin-top: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}



.hero {
  background: url('../Images/carousel1.jpg') no-repeat center center/cover;
  height: 60vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 12px;
}

.section-title {
  margin-bottom: 20px;
  font-size: calc(2rem * var(--multi));
  font-weight: bold;
  color: #004080;

  display: inline-block;
}

//.card:hover {
  //transform: scale(1.03);
 // transition: 0.3s ease;
//  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
//}

.content-section {
  padding: 40px 0;
}


/* overChanges */
.sdOfficer p {
  line-height: 1.3rem !important;
}

/* Responsive */
@media (max-width: 1120px) {
  #menu-list {
    gap: 15px;
  }
  .toggle-btn {
    display: block;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  .main-text h3 {
    font-size: calc(14px * var(--multi));
    margin-bottom: 0px;
  }

  .toggle-btn {
    display: block;
    align-self: flex-end;
    z-index: 10;
    margin-top: -40px;
  }


  #menu-list {
    display: none;
    flex-direction: column;
    background-color: #004080;
    width: 100%;
    padding: 10px 0;
    border-radius: 6px;
    z-index: 1;
  }

  #menu-list.active {
    display: flex;
  }

  .has-submenu > a {
    position: relative;
    padding-right: 30px;
  }

  .submenu {
    display: none;
    position: static;
    background-color: #003366;
    box-shadow: none;
    padding-left: 15px;
  }

  .has-submenu.open > .submenu {
    display: block;
  }

  .submenu li a {
    padding: 10px 20px;
    color: #00bfff;
  }

  .submenu li a:hover {
    background-color: #0059b3;
    color: #fff;
  }

  .submenu .submenu {
    padding-left: 20px;
    background-color: #002244;
  }
    /* Ensure top-level submenus and nested submenus are hidden by default */
    .submenu {
      display: none !important;
    }
  
    /* Show submenu only if .open class is added via JS */
    .has-submenu.open > .submenu {
      display: block !important;
    }
  
    /* Nested submenu */
    .has-submenu.open > .submenu .has-submenu.open > .submenu {
      display: block !important;
    }
}




@media (max-width: 900px) {
  #menu-list {
    gap: 10px;
  }

  .overlap-logo {
    width: 35px;
  }
}

@media (max-width: 768px) {

  /* social media icon */
  /* social media icon */
  /* social media icon */

 

  .social-bar a i {
    padding-left: 3px;
    width: 30px;
  }



  #top-bar {
    flex-direction: column;
    gap: 10px;
  }

  .main-text h3 {
   font-size: calc(14px * var(--multi));
  }

  
  .carousel-images img {
    height: 60vh;
  }

  .overlay-img {
  position: absolute;
  top: 0px;
  left: 0px;
  }

  .center-overlay-img {
    top: 30%;
    width: 300px;
    height: 300px;
  }

  .Zoom-section,
  .apply-btn {
    gap: 0.5rem;
    align-items: center;
  }

  .Zoom-section p {
    text-align: center;
  }

  .apply-btn .official-login-btn {
    display: none;
  }

  .top-bar-section {
    width: 100%;
    justify-content: space-between;
  }

  .top-bar-last-section {
    width: 100%;
    justify-content: space-between;
  }

  .menu ul {
    flex-direction: column;
  }

  .intro-heading {
    font-size: calc(1.4rem * var(--multi));
  }

  .Pilgrimage-access {
    justify-content: sat;
  }

  .footer-content {
    flex-direction: column;
  }

  .carousel-images img {
    height: 85vh;
  }

  .section-text,
  .section-image {
    flex: 1 1 50%;
  }

  .section {
    align-items: center;
  }

  .container_about  {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .section-text,
  .section-image {
    width: 100%;
    text-align: center;
  }

  .section-image {
    text-align: center;
  }

  .section-text h1 {
    font-size: calc(30px * var(--multi));
  }

  .section-text h2 {
    font-size: calc(20px * var(--multi));
  }

  .table-section h2 {
    font-size: calc(18px * var(--multi) !important);
  }
  .contact-header h2 {
    font-size: calc(2rem * var(--multi));
  }

  .contact-form-section,
  .info-section,
  .social-section {
    padding: 1rem;
  }

  .social-links {
    flex-direction: column;
  }

  .contact-header p {
    font-size: calc(0.9rem * var(--multi));
  }
}

@media (max-width: 600px) {
  .section {
    padding: 30px 15px;
  }

  .section-text h1 {
   font-size: calc(26px * var(--multi));
  }

  .section-text h2 {
    font-size: calc(18px * var(--multi));
  }

  .section-text p {
    font-size: calc(15px * var(--multi));
  }

  .section-image img {
    width: 100%;
  }
  #map .mobileMap{
    display: block;
  }
  #map .desktopMap{
    display: none;
  }
  .table-section h2 {
    font-size: calc(50px * var(--multi) !important);
  }

  .widget_355 .center-overlay-img {
      width: 300px;
  }
  .mythCard{
      width:300px;
  }
.widget_354 .intro-heading {
   font-size: calc(24px * var(--multi) !important);
}
}
@media (max-width: 415px) {
    .overlay-img {
        bottom: 0px;
        right: 0px;
        width: 80px;
    }
}

@media print {
  body * {
    visibility: hidden;
  }

  #print-section, #print-section * {
    visibility: visible;
  }

  #print-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .no-print {
    display: none;
  }
}
/* BOOTSTRAP CHANGES */

        /* Print-only styling */
     @media print {

  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
    width: 100% !important;
    background: white !important;
  }

  body * {
    visibility: hidden !important;
  }

  #nocSection,
  #nocSection * {
    visibility: visible !important;
  }

  #nocSection {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .card {
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }

  .btn,
  .print-button-container {
    display: none !important;
  }
}

    .widget_42{
    width:100% !important;
    max-width:1200px !important;
    margin:0 auto !important;
    background: unset !important;
    }
    .widget_105{
    width:100% !important;
    max-width:1200px !important;
    margin:0 auto !important;
    }
   a.btn.dont_replace_id {
         background-color:#004080 !important;
         color:white !important;
        padding-left: 5px; !important;
}
 .widget_105 .card-header.custom_card_head > a {
    padding-left: 5px !important;}

    

.map_heading{
    width: 100% !important;
    text-align: center !important;
    font-weight: bold !important;
    font-size: calc(30px * var(--multi));
    color: #004080 !important;
    margin: 20px 0 !important;
}
@media (max-width: 600px) {
.map_heading{
 font-size: calc(24px * var(--multi) !important);
}
}
#dynamic_6{
margin: 5px 20px 15px;
border-radius: 10px;
}
/*====Text Justify Class ====*/
.textAlignJustify{
    text-align : justify;
}

/*===overWrite ===*/
a:hover {
     text-decoration: none !important; }
.leaflet-routing-container{
  display:none;
}
.image-grid #dynamic_6{
 margin:unset;
}
#templeOfBabaTaraknath #dynamic_6{
 margin:unset;
}
.section-image #dynamic_6{
 margin:unset;
}
.carousel #dynamic_6{
 margin:unset;
}
.legend_item img{
width:35px !important;
height:40px !important;
 object-fit: contain !important;
}


div .dropdown-item0 {
    color: #004080;
}
button.googleMapRedirect {
    padding: 8px !important;
    border-radius: 10px !important;
    border: none !important;
    background-color: #618baf !important;
    color: white !important;
    margin-top: 10px;
}
.introTemple p{
  text-align: justify;
}
.transport-section p{
  text-align: justify;
}
.history-content p{
 text-align: justify;
}
img#dynamic_1 {
    min-width: 40px !important;
}
/*div#dynamic_6 {
  height:520px !important;
}*/
.show-map{
  height:520px !important;
}
.widget_342 .top-bar-last-section {
 padding : 0 0 0 5.9px;
}
.introTemple h4{
 font-size: calc(24px * var(--multi));
}
.introTemple p{
 font-size: calc(16px * var(--multi));
}
.video-folder #dynamic_6{
  height: unset !important;
}
.history-content #dynamic_6{
 margin:unset;
}
.section-text #dynamic_6{
 margin:unset;
}
.sdOfficer p {
  line-height: 1rem !important;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

.galleryCaltureHeading{
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
        color: #008080;
}
.dataTable {
    min-height: unset !important;
    height: auto !important;
    max-height: unset !important;
    width: 100% important;
}
.dataTable th{
background-color: #004080 !important;
}
.dataTables_info{
}

.dataTable th:first-child,
.dataTable td:first-child {
  width: 10px !important;
  white-space: nowrap; /* Optional: prevent wrapping */
}
.table_container {
max-width:1200px;
margin: 0 auto;
}
dataTables_info{
padding-left: 20px;
}.img-thumbnail {
    background: #ffffff !important;
    padding: 20px 20px;
}

.pilgrim-card-right-teal{
   flex: 1 ;
  padding: 20px;
  background: linear-gradient(135deg, #339999, #267373) !important;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.widget_361 [data-fieldname="introheading"] {
 display:none;
}

.widget_361 [data-fieldname="mapCards"]{
display:none !important;
}
.widget_361 [data-fieldname="informationCorner"]{
display:none !important;
}
.nocHeadingText{
font-size: large !important;
}
.lang-toggle{
display:none;
}
.direction-btn{
background-color: #61d97f !important;
}
div.show-map{
margin: 0 20px;
border-radius: 10px;}
.leaflet-top{
z-index:400 !important;
}
.mobile_menu {
    position: relative ;
    z-index: 9999;
}

@media print {
   body * { visibility: hidden }
}

@media print {
  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
    width: 100% !important;
    background: white !important;
  }

  body * {
    visibility: hidden !important;
  }

  #nocSection,
  #nocSection *,
  .map_heading,
  .map_heading * {
    visibility: visible !important;
  }

  .map_heading {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 20px !important;
    font-weight: bold !important;
    margin-bottom: 10px !important;
  }

  #nocSection {
    position: absolute !important;
    top: 60px !important; 
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .card {
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }

  .btn,
  .print-button-container {
    display: none !important;
  }
}

@media print {
  /* Hide everything globally */
  body * {
    visibility: hidden !important;
  }

  /* Show only success-box */
  .success-box,
  .success-box * {
    visibility: visible !important;
  }

  .success-box {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: white !important;
    padding: 40px !important;
    box-sizing: border-box !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin: auto !important;
    z-index: 9999 !important;
    text-align: center !important;
    box-shadow: none !important;
    border: none !important;
    page-break-before: avoid !important;
    page-break-after: avoid !important;
  }

  /* Hide print buttons */
  .no-print {
    display: none !important;
  }

  /* Extra protection from external interference */
  embed, iframe, object {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    position: static !important;
    overflow: hidden !important;
  }
}
@media print {
  /* Hide all media elements that may cause extra pages */
  embed, iframe, object {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
  }

  /* Prevent page breaks */
  html, body {
    page-break-before: avoid !important;
    page-break-after: avoid !important;
    page-break-inside: avoid !important;
    overflow: hidden !important;
    height: 100% !important;
  }

  .success-box {
    page-break-before: avoid !important;
    page-break-after: avoid !important;
    page-break-inside: avoid !important;
  }
}
.widget_381 .card{
   width:300px;
}
@keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

.subMap_heading{
    margin-top: -10px;
    font-size: 18px;       
    color: #336699;       
    font-weight: 500;      
    margin-bottom: 10px;
   width:100%;
   text-align:center;
}
@media (max-width: 767px) {
  .subMap_heading{
    font-size: 14px;
  }
}

