/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

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

/* CONTAINER */
.container {
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
nav {
  position: sticky;
  background-color: #fff;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  max-width: 93%;
  margin: 20px auto;
  margin-top: 0;
  margin-bottom: 0;
}

.company-logo {
  height: 80px;
  width: 150px;
  object-fit: contain;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
}

ul a {
  text-decoration: none;
  margin-right: 12px;
  color: #1e1e1e;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

ul a:hover {
  background-color: #e6e5e5;
}

ul a i {
  margin-right: 10px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* HERO SECTION */
.mountabu-hero {
  background: url("https://www.gosahin.com/go/p/j/1588416803_nakki-lake-mount-abu3.jpg")
    center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  max-width: 93%;
  margin: auto;
}

.mountabu-hero h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.mountabu-hero p {
  font-size: 18px;
  max-width: 700px;
}

/* DETAILS SECTION */
.mountabu-details {
  padding: 60px 0;
  max-width: 93%;
  margin: auto;
  background: #f7faff; /* light blue-white */
}

.details-left {
  flex: 1;
}

.details-left img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.details-right {
  flex: 1;
  padding-left: 40px;
}

.details-right h3 {
  font-size: 32px;
  color: #0077c2;
  margin-bottom: 15px;
}

.details-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.details-right h4 {
  font-size: 20px;
  margin: 20px 0 10px;
  color: #0077c2;
}

.details-right ul {
  list-style: none;
  padding-left: 0;
}

.details-right ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* BACK BUTTON */
.back-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #0077c2;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #005fa3;
}

/* FLEX LAYOUT */
.mountabu-details .container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: #020617;
  border-top: 1px solid #1e293b;
  margin-top: 10px;
  max-width: 93%;
  margin: auto;
  padding: 30px 20px;
}
.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.footer-box h3 {
  margin-bottom: 12px;
  color: #fff;
}
.footer-box p,
.footer-box a {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #64748b;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mountabu-details .container {
    flex-direction: column;
  }

  .details-right {
    padding-left: 0;
  }

  .header nav {
    float: none;
    text-align: center;
    margin-top: 15px;
  }

  .header nav a {
    display: inline-block;
    margin: 0 15px;
  }
}
