
@import url(" https://fonts.cdnfonts.com/css/helvetica-neue-5 ");

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ephesis&family=Pathway+Extreme:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", sans-serif;
  background: #FFFFFF;
}
.paragraph{
     font-family: "Poppins", serif !important;
}
.styled-text{
    font-family: "Ephesis", serif;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #FF9901 #151748;
}

html::-webkit-scrollbar {
  width: 2px;
}
html::-webkit-scrollbar {
  width: 2px;
  background: #151748;
}

html::-webkit-scrollbar-thumb {
  background-color: #fd4774;
  border-radius: 6px;
  border: 2px solid #151748;
}

html::-webkit-scrollbar-track {
  background-color: red;
  border-radius: 20px;
}

.main-width {
  max-width: 1440px;
  width: 90%;
  margin: auto;
}

.visit-banner {
  background-image: url("./img/place to visit/clocktower.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.inner-banner {
  background-color: rgba(0, 0, 0, 0.336);
}

.grid-color {
  background: linear-gradient(90deg, #FF9901 0%, #ca923f 100%);
}
.footer-grid{
    background: linear-gradient(180deg, #2E83CD 0%, #153e63 100%);
}

.banner {
  /* background-image: url("./img/banner-images/kedarnath.jpg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: bannersBg 120s infinite;
  /* animation: fadeBackground 60s infinite; */
  /* animation-name: bannersBg;
  animation-duration: 60s;
  animation-iteration-count: infinite; */
}

@keyframes bannersBg {
  0% {
    background-image: url("./img/banner-images/banner-1.jpg");
  }
  25% {
    background-image: url("./img/banner-images/banner-2.png");
  }
  50% {
    background-image: url("./img/banner-images/banner-3.jpeg");
  }
  75% {
    background-image: url("./img/banner-images/banner-4.png");
  }
  100% {
    background-image: url("./img/banner-images/banner-5.jpg");
  }
}

/* @keyframes fadeBackground {
  0% {
    background-image: url("./images/banner1.png");
  }
  25% {
    background-image: url("./images/banner2.jpg");
  }
  50% {
    background-image: url("./images/banner3.png");
  }
  75%{
    background-image: url("./images/banner4.png");
  }
  100% {
    background-image: url("./images/banner2.jpg");
  }
} */
/* .banner-overlay{
    background: linear-gradient(106deg, rgba(0, 0, 0, 0.40) 0.24%, rgba(0, 0, 0, 0.60) 49.63%, rgba(0, 0, 0, 0.00) 99.02%);}
   */
/* .banner-grid-color {
background: linear-gradient(90deg, rgba(0, 0, 0, 0.54) 39.38%, rgba(0, 0, 0, 0.27) 99.99%);
} */

.hamburger,
.close-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 37px;
  height: 22px;
  cursor: pointer;
  z-index: 20;
}

.hamburger .line,
.close-hamburger .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.hamburger.active .line:nth-child(1),
.close-hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2),
.close-hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3),
.close-hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation styling */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #FF9901;
  color: white;
  transition: left 0.3s ease;
  z-index: 15;
  padding-top: 20px;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 20px;
}

.mobile-nav ul li {
  padding: 15px 0;
}

.mobile-nav ul li a {
  /*color: #fff;*/
  text-decoration: none;
}

/* Style for the close hamburger as a cross (X) */
.close-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;

  border-radius: 50%;
  background-color: #fff;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 45px;
  right: 20px;
  z-index: 20;
}

.close-hamburger .line {
  position: absolute;
  width: 50%;
  left: 25%;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease;
}

/* Transform lines into an X */
.close-hamburger .line:nth-child(1) {
  transform: rotate(45deg);
}

.close-hamburger .line:nth-child(2) {
  transform: rotate(-45deg);
}

/* Prevent page scroll when nav is open */
/* Ensure the mobile navigation is scrollable */
.mobile-nav {
  overflow-y: auto;
}

/* Prevent the body from scrolling when nav is open */
body.nav-open {
  overflow: hidden;
}

     .link {
            position: relative;
            display: inline-block;
            padding-bottom: 2px;
        }

        .link:hover::after,
        .link.active::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        .link::after {
            content: '';
            display: block;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #fd8267 0%, #FF9901 100%);
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.45s ease-out;
        }

             .dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;

  position: relative;
  perspective: 1000px;
  z-index: 100;
}

.dropdown:hover {
  cursor: pointer;
}

.dropdown:hover .dropdown_menu li {
  display: block;
}

.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  perspective: 1000px;

  width: 300px;
  overflow: hidden;
  z-index: -1;
}

.dropdown_menu li {
  display: none;
  color: #313039;
  background-color: #fff;
  padding: 7px 14px;
  width: 100%;
  font-size: 14px;
  opacity: 0;
}

.dropdown_menu-2 .dropdown_item-1 {
  transform-origin: top center;
  animation: rotateX 300ms 60ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-2 {
  transform-origin: top center;
  animation: rotateX 300ms 120ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-3 {
  transform-origin: top center;
  animation: rotateX 300ms 180ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-4 {
  transform-origin: top center;
  animation: rotateX 300ms 240ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-5 {
  transform-origin: top center;
  animation: rotateX 300ms 300ms ease-in-out forwards;
}

@keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}


                     .linkbtn {
  color: #252525;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.linkbtn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  color:#252525;
  width: 100%;
  height: 100%;
  background-color:  #fff;
  border-radius: 10rem;
  z-index: -2;
}

.linkbtn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background:linear-gradient(90deg, #fd8267 0%, #FF9901 100%);; 
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}

.linkbtn:hover {
  color: #fff;
}

.linkbtn:hover::before {
  width: 100%;
}
      
                     .linkbtn-2 {
  color: #fff;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.linkbtn-2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  color:#fff;
  width: 100%;
  height: 100%;
  background:linear-gradient(90deg, #fd8267 0%, #FF9901 100%);
  border-radius: 10rem;
  z-index: -2;
}

.linkbtn-2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}

.linkbtn-2:hover {
  color:#151748 ;
}

.linkbtn-2:hover::before {
  width: 100%;
}

                      .reglinkbtn {
  color: #fff;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

                          .reglinkbtn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  color:#fff;
  width: 100%;
  height: 100%;
  background:#FD4774;

  z-index: -2;
}

.reglinkbtn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background:#FF9901; 
  transition: all 0.3s;

  z-index: -1;
}

.reglinkbtn:hover {
  color:#fff ;
}

.reglinkbtn:hover::before {
  width: 100%;
}

                      .reglinkbtn-2 {
  color: #fff;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

                          .reglinkbtn-2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  color:#fff;
  width: 100%;
  height: 100%;
  background:#FD8267;

  z-index: -2;
}

.reglinkbtn-2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background:#FB6B4B; 
  transition: all 0.3s;

  z-index: -1;
}

.reglinkbtn-2:hover {
  color:#fff ;
}

.reglinkbtn-2:hover::before {
  width: 100%;
}
             
              

/* my css */

.text-outer {
  background-color: black;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 10px;
}


/* Footer container */
#footer-container {
  display: flex;
  /* flex-direction: row; */
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-div {
  width: 40%;
}

@media screen and (max-width: 990px) {
  #footer-container {
    flex-direction: column;
  }
  
  .footer-div {
    width: 100%;
  }
}

/* Registration section Scan & Pay */

.scroll-container {
    width: 100%;
    overflow-x: auto;     /* enables horizontal scroll */
    overflow-y: hidden;
    white-space: nowrap;  /* prevents content from wrapping */
    border: 1px solid #ccc;
}

.content {
    display: inline-block;
    width: 1200px;        /* wider than container to force scroll */
    padding: 20px;
    background: #f5f5f5;
}

#scan_pay {
  background-color: pink;
  width: 20%;
  margin: auto;
}

