* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree";
}

body {
  margin: 0;
  padding: 0;
  color: #fff;
}
/* about section  */

.about-background {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust as needed */
  background: url("../images/about.jpg") center/cover no-repeat;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Overlay effect */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-text {
  color: #fff;
  max-width: 80%;
  font-size: 18px;
}

.about-text h2 {
  font-size: 3em;
  margin-bottom: 10px;
}

.about-text span {
  color: #f1ac32;
  font-style: italic;
}

.about-text p {
  margin-bottom: 15px;
  max-width: 800px;
}

.welcome-badge {
  display: inline-block;
  padding: 12px 25px;
  background-color: rgba(156, 156, 156, 0.481);
  border-radius: 30px;
  margin-bottom: 30px;
}
.package-part-headings {
  display: flex;
  align-items: center;
}
.see-more-part {
  background-color: #f5b742;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.see-more-part:hover {
  background-color: #e89e2b; /* Darker shade on hover */
}
.title span {
  color: #e89e2b; /* Highlight color */
  font-style: italic;
}
/* Leh-ladak section  */
@media screen and (min-width: 350px) and (max-width: 800px) {
  .package-part-headings {
    flex-wrap: wrap;
  }
}
