/********** Template CSS **********/
:root {
    --primary: #EF403D;
    --light: #db801e;
    --dark: #000;
}

h3 {

    font-size: 40px;
    margin-top: 40px;
}

h2 {
    font-weight: 700;
    font-size: 40px;
} 

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background-color: #db801e;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

.marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  gap: 3rem;
  padding: 2rem;
  user-select: none;
}

.marquee__content {
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  animation: scroll var(--animation-speed) linear infinite;
  list-style: none;
  padding: 0;
  margin: 0;
}

.marquee__content li {
  font-size: var(--font-size-large);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing);
  white-space: nowrap;
}

/* Animation keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}



/*** 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,
.btn.btn-secondary {
    color: #FFFFFF;
    background-color: #d8120f;
    border: none;
    white-space: nowrap;
}

.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;
    color: #ef403d;
    background-color: #fff;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-height: 200px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.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 {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    white-space: nowrap;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .navbar .navbar-brand {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.navbar .navbar-brand img {
    max-height: 50px;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .header-bg .logo_img {
    max-height: 40px;
    min-width: 80px;
    box-shadow: rgba(0, 0, 0, 0.4);
  }
  
  .container {
      width: 95%;
  }
  
  .logo_img_2 {
    max-height: 40px;
    min-width: 70px;
    box-shadow: rgba(0, 0, 0, 0.4);
  }
}

/*** Header ***/
.header-bg {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(bg-1.jpg) no-repeat;
    background-position: top left;
    background-size: cover;
}

.header-bg-2 {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(how-to-reach-bg-2.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.header-bg-3 {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(ve-bg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.header-bg-6 {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(header-bg-gallery.jpg) no-repeat;
    background-position: top right;
    background-size: cover;
}

.header-bg .logo_img {
    max-height: 150px;
    min-width: 300px;
    box-shadow: rgba(0, 0, 0, 0.4);
}

.logo_img_2 {
    max-height: 60px;
    min-width: 130px;
    box-shadow: rgba(0, 0, 0, 0.4);
}



.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
    color: #f62922;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
    color: #f62922;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.play-btn {
    padding-left: 320%;
    padding-top: 100%;
}

.btn-play-2 {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
    color: #f62922;
}

.btn-play-2:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
    color: #f62922;
}

.btn-play-2:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play-2 span {
    display: flex;
    position: relative;
    z-index: 3;
    width: 26px;
    height: 26px;
    left: 26px;
    border-left: 25px solid var(--primary);
    border-top: 25px solid transparent;
    border-bottom: 20px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.modal-video .modal-dialogue {
  max-width: 900px;
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 768px) {
   #video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
 } 
}

@media screen and (max-width: 576px) {
   #video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
 } 
}

.modal-content {
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
}

.modal-video .modal-body {
    position: relative;
    padding: 0;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.breadcrumb-item.active {
    color: #d8120f;
    
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--light);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url('Pragyagiri_Tourist_Place_bg.jpg') 0% 0% no-repeat;
    background-size: cover;
    min-height: 100vh;
    animation: panBackground 50s linear infinite;
}

.facts button {
    margin-top: 200px;
}

@keyframes panBackground {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

.facts h2 {
    margin-top: 200px;
    font-size: 50px;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url('Pragyagiri_hill_top.jpg') center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: center;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}


/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/*** Membership ***/

.membership-item {
    padding: 45px 30px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .7);
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.membership-item .display-1 {
    color: var(--light);
}

/*** Testimonial ***/
.testimonials {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    z-index: 1;
    background-image: url(Buddha-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: #f2efef;
    transform: scale(.8);
    transition: .5s;

}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #f2efef;
    transform: scale(1);
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #000 !important;
    border-radius: 30px;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

#owl-demo .item {
  margin: 3px;
}

#owl-demo .item img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel-wrapper {
    position: relative;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: -4px;
}

.next-btn {
    right: -4px;
}

.arrow {
    font-size: 25px;
    color: var(--primary); /* Your theme orange */
    font-weight: bolder;
    margin-top: 3px;
}

.item {
    position: relative;
}

.image-text {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translate(-50% , -50%);
    background: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
}

/*** Footer ***/
.footer-copy {
    background: #d8120f;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    margin-top: 80px;
    padding: 30px;
}

.footer-copy .container {
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    max-width: 1700px;
    height: auto;
    display: flex;
}

 .footer-copy .col-sm-6 {
    white-space: nowrap; 
    clear: both;
 }

.block__item {
  flex: 0 1 50%;
  font-style: italic;
}
.block__item .block__inner {
  padding: 2em 3em;
}
@media (max-width: 550px) {
  .block__item .block__inner {
    padding: 0.5em;
  }
  
  .itenary h2 {
    font-size: 20px;
}
  
  .block__item {
  flex: 0 1 100%;
  font-style: italic;
 }
}
@media (max-width: 950px) {
  .block__item {
    flex: 0 1 100%;
  }
}

.block__description {
  line-height: 22px;
}
.block__description:first-letter {
  float: left;
  font-size: 55px;
  line-height: 40px;
  padding: 0 0.25em;
}

.list {
  font-family: "Myriad Pro", sans-serif;
  font-style: normal;
  background: none;
  float: left;
  padding: 1.5em 0;
  margin-bottom: 3em;
}
.list .list__item {
  float: left;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 20px;
}
.list .list__item .list__desc {
  width: 60%;
  border-bottom: 1px solid #484C56;
  color: #000;
  font-size: 15px;
  line-height: 22px;
  padding: 1em;
  position: relative;
}
.list .list__item .list__desc h4 {
  font-size: 25px;
  font-weight: 700;
}
.list .list__item .list__desc .border {
  background: #2A2B31;
  width: 3px;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8%;
}
.list .list__item .list__desc .border:after {
  content: "";
  background: #FAAB4F;
  border: 5px solid #2A2B31;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: -7px;
  width: 8px;
  height: 8px;
}
@media (max-width: 550px) {
  .list .list__item .list__desc .border {
    left: -5%;
  }
}
.list .list__item .list__time {
  color: #000;
  width: 25%;
  text-align: center;
}
.list .list__item:first-of-type .list__desc,
.list .list__item:last-of-type .list__desc {
  border-bottom: none;
}
.list .list__item:first-of-type .list__desc .border:before,
.list .list__item:last-of-type .list__desc .border:before {
  content: "";
  background: #2A2B31;
  border-radius: 50%;
  height: 9px;
  width: 9px;
  position: absolute;
  left: -3px;
}
.list .list__item:first-of-type .list__desc .border:before {
  top: -8px;
}
.list .list__item:last-of-type .list__desc .border:before {
  bottom: -8px;
}


.itenary i {
    color: var(--primary);
}

.itenary h2 {
    color: var(--primary);
    font-size: 30px;
}

.itenary h2 span {
   color: var(--light); 
}

.itenary h4 {
    color: var(--primary);
}

.itenary h4 span {
   color: var(--light); 
}

.itenary .list__border {
    color: var(--primary);
}

@media screen and (max-width: 768px) {
    .itenary h2 {
    font-size: 20px;
}

.itenary h2 span {
  font-size: 20px;
}
}


.responsive-table {
      width: 100%;
      border-collapse: collapse;
      overflow-x: auto;
      display: block;
    }
    .responsive-table th,
    .responsive-table td {
      border: 1px solid #ccc;
      padding: 12px 16px;
      vertical-align: top;
      text-align: left;
      border: 2px solid var(--primary);
    }

    .responsive-table th {
      background-color: #ffefef;
      font-weight: 600;
      width: 25%;
    }
    @media (max-width: 768px) {
      .responsive-table th, .responsive-table td {
        display: block;
        width: 100%;
      }
      .responsive-table th {
        background-color: #f0f0f0;
        font-size: 1rem;
      }
      .responsive-table td {
        padding: 10px;
        border-top: none;
      }
      
      .itenary h2 span {
         font-size: 20px; 
}
    }
    
    
    .video-gallery {
        background-image: url("environment-pragyagiri.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0;
    margin: 0; 
    overflow: hidden;
    width: 100%;
    min-height: 80vh;
    padding-top: 40px;
    }
    
     .video-gallery-2 {
        background-image: none;
    padding: 0;
    margin: 0; 
    overflow: hidden;
    width: 100%;
    min-height: 80vh;
    padding-top: 40px;
    }
    
    .video-gallery .modal-video .modal-dialog {
    position: relative;
    max-width: auto;
    margin: 60px auto 0 auto;
}

.video-gallery .modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.video-gallery .modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.video-gallery .img-responsive {
  width: 100%;
}

.video-gallery-2 .img-responsive {
  width: 100%;
}

.video-gallery .video-thumbnail {
  position: relative;
  overflow: hidden;
}

.video-gallery .play-btn {
    position: absolute;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
    color: #f62922;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.video-gallery .play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
    color: #f62922;
}

.video-gallery .play-btn:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.video-gallery .play-btn span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.video-gallery button.play-btn:hover,
.video-gallery button.play-btn:active,
.video-gallery button.play-btn:visited,
.video-gallery button.play-btn:focus {
  color: rgba(255, 255, 255, 1.0);
}

@media (max-width: 767px) {
  .video-gallery a.video {
    display: block;
  }
  
}

.video-gallery-2 .video-thumbnail {
  position: relative;
  overflow: hidden;
}

.video-gallery-2 .play-btn {
    position: absolute;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
    color: #f62922;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.video-gallery-2 .play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
    color: #f62922;
}

.video-gallery-2 .play-btn:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.video-gallery-2 .play-btn span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.video-gallery-2 button.play-btn:hover,
.video-gallery-2 button.play-btn:active,
.video-gallery-2 button.play-btn:visited,
.video-gallery-2 button.play-btn:focus {
  color: rgba(255, 255, 255, 1.0);
}

@media (max-width: 767px) {
  .video-gallery-2 a.video {
    display: block;
  }
  
}

#travel-guide {
    background-image: url("Map-bg-3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 80vh;
}

.travel-info {
      background-color: #fdfaf5;
      margin: 0;
      padding: 0;
      color: #333;
      overflow: hidden;
    }

.travel-info .container {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
      padding-top: 60px;
    }

   .travel-info h2 {
      font-size: 28px;
      margin-bottom: 30px;
      text-align: left;
      margin-bottom: 20px;
    }

    .travel-info .transport {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 2px solid #db801e;
    }

    .travel-info .transport:last-child {
      border-bottom: none;
    }

    .travel-info .icon {
      flex: 0 0 60px;
      margin-right: 20px;
    }

    .travel-info .icon img {
      width: 70px;
      height: 70px;
      filter: invert(40%) sepia(60%) saturate(400%) hue-rotate(5deg) brightness(95%) contrast(90%);
    }

    .travel-info .content h3 {
      font-size: 18px;
      margin: 0 0 8px;
    }

    .travel-info .content p {
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 600px) {
     .travel-info .transport {
        flex-direction: column;
        text-align: center;
      }
      .icon {
        margin: 0 auto 15px;
      }
    }

#travel-guide .travel-intro {
    padding: 40px;
    background-color: #ffe0b3;
    margin-top: 120px;
    border: 3px solid #d8120f;
    border-radius: 30px;
    box-shadow: 3px rgba(0, 0, 0, 0.4);
}

#travel-guide .travel-intro p {
    line-height: 1.7rem;
    margin-top: 20px;
}

#travel-guide .travel-intro h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

#travel-guide .travel-intro h5 {
    font-size: 25px;
    font-weight: 700;
    margin-top: 20px;
}

.paragraph_htr span {
    font-weight: 700;
    color: #D8120F;
    width: 100%;
}

.htr_head {
   font-weight: 700;
    color: #D8120F; 
    font-size: 30px;
}

.htr_head h4 img {
   max-width: 40px;
   color: #db801e;
}

.list_htr li {
    font-weight: 500;
    margin-bottom: 10px;
}

/*** Virtual View ***/

    #main-view h4 {
        margin-left: 70px;
        margin-bottom: 20px;
        font-weight: 700;
        font-size: 30px;
        color: #db801e;
    }
    
    #main-view i {
     color: #d8120f;   
    }

    #main-view iframe {
      border: 2px #db801e;
    }
    @media (max-width: 768px) {
      #main-view iframe {
        width: 80px;
        height: 60px;
      }
      #main-view iframe {
        height: 300px;
      }
    }

    .fl-fl {
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px;
  width: 210px;
  position: fixed;
  right: -160px;
  z-index: 1000;
  font: normal normal 10px Arial;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.float-sm i {
  font-size: 25px;
  color: #fff;
  padding: 10px 0;
  width: 80px;
  margin-left: 11px;

}

.fl-fl:hover {
  right: 0;
}

.fl-fl a {
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  line-height: 43px!important;
  vertical-align: top!important;
}

.float-in {
  top: 355px;
  background: -webkit-radial-gradient(33% 100% circle, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
  background:radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
}

.float-li {
  top: 300px;
  background: #1178b3;
}

.float-web {
  top: 410px;
  background: #00749a;
}


#fixed-form-container {
    position: fixed;
  bottom: 0;
  left: 0;
  width: 300px;
  background: none;
  padding: 0;
  margin: 0;
  z-index: 9999;

}

#fixed-form-container .button:before { 
   content: "+ ";
}

#fixed-form-container .expanded:before { 
    content: "- ";
}

#fixed-form-container .button { 
  font-size:1.1em; 
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #d8120f;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px 0px 0px;
  padding: 5px 20px 5px 20px;
  background-color: #d8120f;
  color: #fff;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: 4px 0px 5px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 4px 0px 5px 0px rgba(0,0,0,0.3);
  box-shadow: 4px 0px 5px 0px rgba(0,0,0,0.3);
  bottom: 0;
}

#fixed-form-container .body {
    background-color: #fff; 
    border-radius: 5px;
    border: 2px solid #d8120f;
    margin-bottom: 16px;
    padding: 10px; 
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.3);
}

@media only screen and (min-width:768px){
    #fixed-form-container .button{
       margin: 0;

    }
    #fixed-form-container {
        left: 20px;
        width: 390px;
        text-align: left;
    }

    #fixed-form-container .body {
        padding: 30px;
        border-radius: 0px 5px 5px 5px;
    }
}

.faq-title {
  text-align: center;
  margin-bottom: 40px;
}

.faq .topic {
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.faq .open {
  cursor: pointer;
  position: relative;
}

.faq .question {
  font-size: 18px;
  font-weight: bold;
  padding-right: 40px;
}

.faq .faq-t {
  position: absolute;
  right: 10px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-left: 2px solid #444;
  border-bottom: 2px solid #444;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.faq .faq-o {
  transform: rotate(135deg);
}

.faq .answer {
  display: none;
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

@media screen and (max-width: 480px) {
  .faq .faq-t {
    display: none;
  }
}

#language-toggle {
  position: fixed;
  top: 0;
  right: 30px;
  z-index: 9999;
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#language-toggle button {
  background-color: #f2952b;
  color: #000;
  border: none;
  margin: 0 4px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 13px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

#language-toggle button:hover {
  background-color: #555;
}

.google-map {
  max-width: 100%;
  width: 1000px;
  height: 500px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .google-map {
    width: 300px;
    height: 300px;
    margin-left: 0;
  margin: 0 auto;
  display: flex;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  }
}

#about {
    background-image: url("design-bg-light.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0;
    margin: 0;
}


#attraction {
    background-image: url("design-bg-6.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0;
    margin: 0;
}


  h3 {
      font-size: 1.4rem;
      font-weight: bold;
      margin-bottom: 15px;
    }

     .reasons-box {
      background-color: #ffe0b3;
      border: 1px solid #d71211;
      border-radius: 8px;
      padding: 10px 20px;
      max-width: 900px;
      width: 100%;
      box-sizing: border-box;
    }

     .reasons-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .reasons-box li {
      margin-bottom: 12px;
      padding-left: 28px;
      position: relative;
      font-size: 1rem;
      line-height: 1.5;
    }

     .reasons-box li::before {
      content: "➜";
      color: #d71211;
      position: absolute;
      left: 0;
      font-weight: bold;
      font-size: 1rem;
    }
    
    .reasons-box-2 {
      background-color: #ffe0b3;
      border: 3px solid #d71211;
      border-radius: 8px;
      padding: 30px 20px;
      max-width: 900px;
      width: 100%;
      box-sizing: border-box;
    }

     .reasons-box-2 ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .reasons-box-2 li {
      margin-bottom: 12px;
      padding-left: 28px;
      position: relative;
      font-size: 1rem;
      line-height: 1.5;
    }

     .reasons-box-2 li::before {
      content: "➜";
      color: #d71211;
      position: absolute;
      left: 0;
      font-weight: bold;
      font-size: 1rem;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
       h3 {
        font-size: 1.2rem;
      }
       .reasons-box {
        padding: 12px 15px;
      }
      .reasons-box li {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
       h3 {
        font-size: 1rem;
      }
       .reasons-box {
        padding: 10px 12px;
      }
       .reasons-box li {
        font-size: 0.9rem;
        padding-left: 24px;
      }
      .reasons-box li::before {
        font-size: 0.9rem;
      }
    }
    
    
    .flip-card {
  perspective: 1000px;
  min-height: 400px; /* Set a minimum height for the flip card */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0; /* Set the top and left properties to ensure */
  left: 0; /* the front and back cards are overlaid on each other */
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.flip-card-front,
.flip-card-back {
  /* ... existing styles ... */
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: transparent;
  min-height: 400px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1; /* Ensure the front card stays on top initially */
}

.flip-card-front img {
  object-fit: cover; /* This will ensure the image covers the entire container */
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.flip-card-back {
  /* ... existing styles ... */
  transform: rotateY(-180deg);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-text {
  position: absolute;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

.flip-card-back {
  box-sizing: border-box; /* make padding included in the height */
  background-color: #d81113;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.flip-card-back a {
    color: #fff;
}

.flip-card-back a:hover {
    color: #fff9d9;
}

.flip-card-back .content-container {
  padding: 15px;
  height: 100%;
  overflow-y: auto;
}

.flip-card-back .content-container p {
    margin-top: 40px;
}

.tips img {
    border-radius: 3px;
}

.vibe {
  background-image: url("Video-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center; /* start from right */
  padding: 0;
  margin: 0; 
  overflow: hidden;
  width: 100%;
  min-height: 80vh;

  /* Animation */
  animation: panScene 40s linear infinite;
}

@keyframes panScene {
  0% {
    background-position: right center;
  }
  100% {
    background-position: left center;
  }
}

.vibe h2 {
    margin-top: 140px;
}

 @keyframes panRightToLeft {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%); /* shift half since width=200% */
      }
    }

.advertisers-service-sec {
    background-image: url("design-bg-4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0;
    margin: 0; 
    overflow: hidden;
    width: 100%;
    min-height: 60vh;
}

.sec-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
  
}

.sec-icon i {
    color: #d60f12;
}

.sec-icon::before {
  content: "";
  position: absolute;
  height: 1px;
  left: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333333;
  width: 50px;
}

.sec-icon::after {
  content: "";
  position: absolute;
  height: 1px;
  right: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333;
  width: 50px;
}

.advertisers-service-sec {
  background-color: #f5f5f5;
}

.advertisers-service-sec span {
  color: rgb(255, 23, 131);
}

.advertisers-service-sec .col {
  padding: 0 1em 1em 1em;
  text-align: center;
}

.advertisers-service-sec .service-card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-image: url("card-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.advertisers-service-sec .service-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(#d60f12);
  position: absolute;
  left: 0%;
  top: -98%;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec h3 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #d60f12;
  margin: 1em 0;
  z-index: 3;
  margin-top: 30px;
}

.advertisers-service-sec p {
  color: #000;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  z-index: 3;
}

.advertisers-service-sec .icon-wrapper {
  background-color: #d60f12;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  z-index: 3;
}

.advertisers-service-sec .icon-wrapper i {
    color: #d60f12;
}

.advertisers-service-sec .service-card:hover:after {
  top: 0%;
}

.service-card .icon-wrapper {
  background-color: #ffffff;
  color: rgb(255, 23, 131);
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
  color: #d60f12;
}

.advertisers-service-sec .service-card:hover h3 {
  color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
  color: #f0f0f0;
}

.about-pragyagiri {
    background-image: url("Website_About Us Section-5.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0;
    margin: 0; 
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
}

.about-pragyagiri p {
    width: 70%;
    max-width: 100%;
}

.about-pragyagiri ul li {
    width: 70%;
    max-width: 100%;
}


.best-visit-time {
    background-image: url("design-bg-7.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0;
    margin: 0; 
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
}

.vibe-audio {
	box-sizing: border-box;
	background: #f62922;
	color: white;
	cursor: pointer;
	padding: 14px;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	border-radius: 25px; 
	height: 55px;
	width: 300px;
	text-align: center;
	margin-top: 15px;
}


audio {
  display: none;
}

.play-button::before,
.play-button.playing::before {
  content: '';
  display: inline-block;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  width: 0;
  height: 12px;
  margin-right: 10px;
  border-color: transparent transparent transparent #FFF;
  transition: 100ms all ease;
  cursor: pointer;
  border-style: solid;
  border-width: 6px 0 6px 8px;
}

.play-button.playing::before {
  border-style: double;
  border-width: 0px 0 0px 8px;
}

.video-testimonial {
    background-image: url("design-bg-4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0;
    margin: 0; 
    overflow: hidden;
    width: 100%;
    min-height: 50vh;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.aboutus-section {
    padding: 90px 0;
}
.aboutus-title {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 32px;
    margin: 0 0 39px;
    padding: 0 0 11px;
    position: relative;
    text-transform: uppercase;
    color: #000;
}
.aboutus-title::after {
    background: #fdb801 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 54px;
}
.aboutus-text {
    color: #606060;
    font-size: 13px;
    line-height: 22px;
    margin: 0 0 35px;
}

a:hover, a:active {
    color: #ffb901;
    text-decoration: none;
    outline: 0;
}
.aboutus-more {
    border: 1px solid #fdb801;
    border-radius: 25px;
    color: #fdb801;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 7px 20px;
    text-transform: uppercase;
}
.feature .feature-box .iconset {
    background: #fff none repeat scroll 0 0;
    float: left;
    position: relative;
    width: 18%;
}
.feature .feature-box .iconset::after {
    background: #fdb801 none repeat scroll 0 0;
    content: "";
    height: 150%;
    left: 43%;
    position: absolute;
    top: 100%;
    width: 1px;
}

.feature .feature-box .feature-content h4 {
    color: #0f0f0f;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 0 0 5px;
}


.feature .feature-box .feature-content {
    float: left;
    padding-left: 28px;
    width: 78%;
}
.feature .feature-box .feature-content h4 {
    color: #0f0f0f;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 0 0 5px;
}
.feature .feature-box .feature-content p {
    color: #606060;
    font-size: 13px;
    line-height: 22px;
}
.icon {
    color : #f4b841;
    padding:0px;
    font-size:40px;
    border: 1px solid #fdb801;
    border-radius: 100px;
    color: #fdb801;
    font-size: 28px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    width: 70px;
}