html,body{
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    background-color: whitesmoke;
    justify-content: center;
  align-items: center;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield; 
}
/* ***********************************************slideshow** */
.mySlides {
  display: none;
}

/* .dot {

  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;

} */

.active {
  background-color: #717171;
}

/* Fading anim*/
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
      opacity: .4
  }

  to {
      opacity: 1
  }
}

@keyframes fade {
  from {
      opacity: .4
  }

  to {
      opacity: 1
  }
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0 !important;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0 !important;

}


.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* ***************************************************************** navbar*/
.navbar { 
    overflow: hidden;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
    position: fixed;
    height: 70px;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
  float: left;
  position: relative;
  left: 20px;
  bottom: 20px;
}

.logo a{
  padding: 0px important!;
  margin: 0px important!;

}
.logo img {
  height: 60px;
  width: 60px;
}

.navbar a {
    float: right;
    display: block;
    color: white;
    text-align: center;
    margin: 20px 16px;
    text-decoration: none;
}

.navbar a:hover {
    color: #facd1b;
    text-decoration:underline;
}

.navbar2 { 
  overflow: hidden;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.7); 
  position: fixed;
  width: 100%;
  height: 80px;
  top: 0;
  z-index: 1000;
}

.logo2 {
  float: left;
  position: relative;
  left: 15px;
}

.logo2 img {
  height: 70px;
  width: 70px;
}

.menulogo{
  float: right;
  position: relative;
  right: 20px;
  margin-top: 15px;
}

.menulogo img{
  height: 45px;
  width: 45px;
}

.navbarmob {
  position: fixed;
  top: 80px;
  height: 280px;
  right: 0;
  width: 50%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9000;
  overflow-y: auto;
  /* padding-top: 20px; */
  display: none; /* Initially hide the mobile menu */
}

.navbarmob.show {
  display: block; /* Show the mobile menu when 'show' class is present */
}

.navbarmob a{
  width: 100%;
  float: right;
  display: block;
  color: white;
  text-align: center;
  font-weight: 600;
  margin: 15px 0;
  text-decoration: none;
}

.navbarmob a:hover {
  color: #facd1b;
  text-decoration:underline;
}

.overlay4 {
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
}
.overlay4:target {
  visibility: visible;
  opacity: 1;
}

/* ******************************* tourcards*/

.tour-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.tour-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 100%;
    max-width: 300px;
}

.tour-card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
.tour-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.tour-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center; /* Center the image */
    border-radius: 10px 10px 0 0;
}


.tour-details {
    padding: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .tour-card {
        flex: 0 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
    }
}

@media (min-width: 1024px) {
    .tour-card {
        flex: 0 0 calc(33.33% - 40px);
        max-width: calc(33.33% - 40px);
    }
}


/* ******************************************************************* fixedbg why_swat*/

.fixed-bg {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh; /* or more to enable scroll */
    width: 100%;
    position: relative;
}

.bg-1 {
    background-image: url('images/scrolllock_1.webp');
}

.fixed-bg h1 {
  background: linear-gradient(to right, #facd1b, #50D8D7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1em;
  width: max-content;
  z-index: 2;
  /* font-size: 2.5rem; */
  text-align: center;
}

.white-box {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: absolute;
}

.white-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.text-container {
    margin-left: 20px;
}

.text-container p {
    margin: 0;
    color: white;
}

  /* **************************** happy cuntomers box*/

.white-box1 {
    @media (min-width: 1024px)
    {
        padding: 40px;
        width: 250px;
    }
    border-radius: 5px;
    width: 180px;
    height: 200px;
    z-index: 1;
}

.white-box1 img {
    object-fit: cover;
    margin: auto;
    width: 100px;
    height: 100px;
    border-radius: 5px;
}

.text-container1 {

    text-align: center;
    margin-top: 10px;
}

.lorem {
    background-color: white;
    padding: 20px;
    position: relative;
    z-index: 2; /* Above h1 */
}

/* ********************************************** service area*/

.tour-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.serviceoffer a{
    margin: 0;
    padding: 0;
  }
    
    .image-box {
      position: relative;
      @media (min-width: 1024px)
      {
          width: 300px;
          height: 350px; 
      }
      width: 150px;
      height: 200px;
      margin-top: 15px;
      background-color: #fff;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.5s ease, box-shadow 0.3s ease;
    }
    .image-box:hover {
      transform: scale(1.05);
    }
    
    /* .image-container {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    } */
    
    /* .image-container img {
      @media (min-width: 1024px)
      {
          width: 300px;
          height: 300px;
      }
      padding: 10px;
      width: 150px;
      height: 150px;
      object-fit: cover;
    } */
    
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 90%;
      /* @media (min-width: 1024px)
      {
          font-size: 1.2em;
          padding: 20px;
      } */
      /* font-size: .6em; */
      background-color: rgba(0, 0, 0, 0.7);
      color: #fff;
      display: flex;
      padding: 10px;
      text-align:justify;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .image-box:hover .overlay {
      opacity: 1;
    }
      
    .image-box:hover .image-container img {
        opacity: 0;
      }
    
      .image-box:not(:hover) .image-container img {
        opacity: 1;
      }
    .constant-text {
      @media (min-width: 1024px)
      {
          font-size: 1.5em;    
          height: 60px;
      }
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      font-size: 1em;
      font-weight: 500;
      height: 40px; /* Adjusted height */
      background-color: #fff;
      color: #000000;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
      pointer-events: none;
      border-radius: 0 0 10px 10px; /* Curved bottom corners */
      opacity: 1; /* Always visible */
      padding: 5px;
    }
  
  .service_button:hover{
      color: #facd1b;
      background-color: black;
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

.overlay2 {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index:  1000;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay2:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  width: 290px;
  height: 450px;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 1em;
  font-size: 1.2em;
  color: #000000;
}

.popup .close {
  position: absolute;
  top: 5px;
  right: 20px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000000;
}
.popup .close:hover {
  color: #5f5e5e;
}
.popup .content {
  /* max-height: 30%; */
  overflow: auto;
}
/* *************************************************************** scrollock bg booktickts*/  

/* .fixed-bg-section {
  background-image: url('images/scrollock2.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 50vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5%;
  color: white;
}

.headline {
  font-size: 2rem;
  font-weight: bold;
  max-width: 700px;
  margin-bottom: 1em;
}

.cta-button {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  background-color: white;
  color: red;
  border: none;
  border-radius: 999px;
  width: fit-content;
} */


.booktickets:hover{
    color: #facd1b;
    background-color: black;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
/* ************************************************************ footer*/

.contact-us a{
    margin-left: .5em;
}

.subscribe_button:hover {
  color: #facd1b;
  background-color: black;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.overlay3 {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}

.overlay3.visible {
  visibility: visible;
  opacity: 1;
}

.popup2 {
  margin: 70px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 280px;
  height: 280px;
  position: relative;
  /* transition: all 5s ease-in-out; */
}

.popup2 h2 {
  @media screen and (min-width: 720px) {
      font-size: 1.2em;
  }
  margin-top: 1em;
  font-size: 1em;
  color: #facd1b;
}

.popup2 .close2 {
  position: absolute;
  top: 5px;
  right: 20px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}

.popup2 .close2:hover {
  color: red;
}

.popup2 .content2 {
  overflow: auto;
}
