*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

body{
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Poppins';
}

.item {
  cursor: pointer; /* Indicate that the item is clickable */
}

#start-logo {
  position: absolute;
  top: 10px;  /* Adjust as needed */
  left: 30px; /* Adjust as needed */
  width: 110px; /* Adjust to your logo's size */
  height: auto; /* Maintains aspect ratio */
}
.tour{
  background: black;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tour-text {
  margin: 0;
  color: #156294;
  font-size: 20px;
  font-weight: 700;
}

.tour__head{
  padding-top: 5vh;
  text-align: center;
  margin-bottom: 20px;
}

.image-container{
  height: 79vh; /* Adjust height to make space for the carousel */
  position: relative;
  width: 100vw;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0px;
}

.carousel-container {
  height: 1vh;
  background-color: transparent;
  border-top: 2px solid transparent;
  position: relative;
  bottom: 20vh;
}

.owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10%;
  
  
}

.owl-carousel img {
  width: 20vh;
  height: 20vh;
  object-fit: cover;
}


/*Style for text inside image container*/

.carousel-container .item {
  position: relative;
}

.image-container-1 {
  position: relative;
  width: 100%;
  height: 100%;
}

.text-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.text-overlay p {
  margin: 0;
}
/*End*/


.welcome-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 100, 180, 0.3);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Center content vertically */
}

.welcome-first-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Ensures everything inside is centered */
  gap: 1px;
  text-align: center; 
  
}
.logo{
  position: relative;
  top: -90px;
  width: 100%;
  height: 100%;
}

.tour-title {
  color: white;
  font-size: 25px;
  font-weight: 500;
  margin-top: -6em; /* Move closer to the logo */
  position: relative; /* Remove absolute positioning */
}


/* Second Part: Nav Icons */
.welcome-content {
  text-align: center;
  width: 100%; /* Ensure full width */
  display: none; /* Hide nav icons initially */
}

.nav-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
}

/* screensize 320 px above for icons */
.nav-icons img {
  width: 300px;
  height: 300px;
}

.navigate-title{
  color: white;
  font-weight: normal;
}

/* Enter Button */
.enter-btn {
  margin-top: -3em; /* Move closer to the logo */
  position: relative; /* Remove absolute positioning */
  background: #0066cc;
  color: white;
  border: 1px solid;
  border-color: white;
  padding: 12px 100px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  
}

.enter-btn:hover {
  background:#27C8C8;
  color: black;
}

/* Hidden Class */
.hidden {
  display: none;
}


@media screen and (max-width: 319px) {

  .tour-title {
    color: white;
    font-size: 25px;
    font-weight: 500;
    margin-top: -6em; /* Move closer to the logo */
    position: relative; /* Remove absolute positioning */
  }
  
  .enter-btn {
    margin-top: -1em; /* Move closer to the logo */
    position: relative; /* Remove absolute positioning */
    background: #0066cc;
    color: white;
    border: 1px solid;
  border-color: white;
  padding: 12px 100px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    
  }
  

}


@media (min-width: 530px)  and (max-width: 609px) {


  .logo{
    width: 80%;
    height: auto;
  }
  .nav-icons {
    display: flex;
    flex-direction: column; /* Stack icons vertically */
    align-items: center; /* Center them */
    gap: -80rem; /* Reduce space between icons */
  }

  .nav-icons img {
    width: 40%; /* Adjust icon size */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: -100px; /* Fine-tune spacing */
  }

  .tour-title {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-top: -10em; /* Move closer to the logo */
    position: relative; /* Remove absolute positioning */
  }
  
  .enter-btn {
    margin-top: 2em; /* Move closer to the logo */
    position: relative; /* Remove absolute positioning */
  
  }
  

}

@media (min-width: 240px)  and (max-width: 529px) {

  
  .logo{
    width:80%;
    height: auto;
  }
  .nav-icons {
    display: flex;
    flex-direction: column; /* Stack icons vertically */
    align-items: center; /* Center them */
   
  }

  
  .nav-icons img {
    width: 190px; /* Adjust icon size */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: -50px; /* Fine-tune spacing */
  }

  .tour-title {
   
    margin-top: -90px;
   
  }
  
  .enter-btn {
    margin-top: 45px; /* Move closer to the logo */
    position: relative; /* Remove absolute positioning */
  
  }
  
}
