/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #00796b;
  color: white;
}

.navbar img {
  width: 120px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #ffeb3b;
}

/* Hero Section */
.image1 {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.heading {
  text-align: center;
  margin: 30px 0 ;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.heading h2 {
  font-size: 20px;
  font-weight: 600;
}

.heading h1 {
  font-size: 30px;
  font-weight: bold;
}


.heading {
  text-align: center;
  margin: 30px 0;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.heading h2 {
  font-size: 30px;
  font-weight: 600;
}

.heading h1 {
  font-size: 45px;
  font-weight: bold;
}

/* Small screens ke liye text size chhota karein */
@media (max-width: 768px) {
  .heading h2 {
    font-size: 20px; /* Chhoti screen par 20px */
  }

  .heading h1 {
    font-size: 30px; /* Chhoti screen par 30px */
  }
}

@media (max-width: 480px) {
  .heading h2 {
    font-size: 18px; /* Mobile screens ke liye aur chhota */
  }

  .heading h1 {
    font-size: 25px;
  }
}

.button {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.button p {
  background: #00796b;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s;
}

.button p:hover {
  background: #004d40;
}

/* About Section */
.about {
  display: flex;
  justify-content: space-around;
  background: #e0f2f1;
  padding: 20px;
  font-weight: bold;
  text-align: center;
}

/* Tour Section */
.tours-Section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  position: relative;
}

.tours-Section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
}

.tours-Section img:hover {
  transform: scale(1.05);
}

.tours-price {
  font-weight: bold;
  color: #00796b;
  font-size: 18px;
}

.pub, .public, .coming-1st, .coming-2nd {
  position: absolute;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

/* Travel Quote Section */
.travel-Quote {
  text-align: center;
  padding: 30px;
  background: #00796b;
  color: white;
  font-size: 22px;
  font-weight: bold;
}

/* Valley Section */
.valley {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.valley img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
}

.valley img:hover {
  transform: scale(1.05);
}

.neelam, .sakardu, .shogran, .hunza, .fairy {
  position: absolute;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

/* Footer */
.footerSection {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      text-align: center;
  }

  .navbar ul {
      flex-direction: column;
      gap: 10px;
  }

  .button {
      flex-direction: column;
  }

  .about {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
}
