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

body {
  scroll-behavior: smooth;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e4e2e2;
}

nav {
  position: sticky;
  background-color: #fff;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

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

.nav-menu{
  display: none;
}

.nav-menu.active{
  display: block;
}

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;
}

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

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

/* SLIDER */
.slider {
  position: relative;
  width: 50%;
  height: 40vh;
  overflow: hidden;
  margin-left: 30px;
  border-radius: 10px;
  margin-top: 30px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* BUTTONS */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

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

.main-container {
  width: 93%;
  background-color: #fff;
}

.sirohi-intro {
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  background-image: url(https://www.oyorooms.com/travel-guide/wp-content/uploads/2021/05/Mount-Abu-3.jpg?w=2000);
}

.sirohi-intro h1 {
  font-size: 3em;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
  margin-bottom: 10px;
}

.sirohi-intro p {
  font-size: 1.2em;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px #000;
  max-width: 800px;
}

.sirohi-intro img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
}

.btn {
  margin-top: 0;
  padding: 10px 15px;
  text-decoration: none;
  background-color: #017cff;
  color: #f9f9f9;
  border-radius: 8px;
  font-size: 1em;
  transition: 0.4s;
  border: 2px solid transparent;
}

.login {
  cursor: pointer;
  border: 0;
  transition: all 0.3s ease;
}

.signup {
  cursor: pointer;
  background: #017cff;
  color: #fff;
  transition: box-shadow 0.3s ease;
}

.signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 5px #1e1e1e;
}

.login:hover {
  background-color: #017cff;
  box-shadow: 0 0 5px #1e1e1e;
}

.upper-imgs {
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.upper-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.upper-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.upper-imgs img:hover {
  transform: scale(1.05);
}

.imgs-first {
  height: 290px;
  width: 400px;
  cursor: pointer;
  overflow: hidden;
}

.imgs {
  height: 290px;
  width: 218px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.logo {
  height: 80px;
  width: 80px;
  object-fit: contain;
  border: 1px solid #b9b9b9;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Tray (Side Slider) */
.tray {
  position: fixed;
  top: 0;
  right: -30%; /* Hidden initially */
  width: 30%; /* 70% of screen */
  height: 100%;
  background: #fff;
  color: #000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Tray Open State */
.tray.open {
  right: 0; /* Slide in from right */
}

/* Tray Header */
.tray-header {
  display: flex;
  align-items: center;
  padding: 15px;
  justify-content: space-between;
  background: #f9f9f9;
}

/* Close Arrow */
.close-arrow {
  cursor: pointer;
  font-size: 20px;
  margin-right: 10px;
  color: #000;
}

/* Logo + Search Container */
.logo-search-container {
  display: flex;
  align-items: center;
  gap: 15px; /* Space between logo and search */
}

/* Logo */
.tray-logo {
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

/* Search Container */
.search-container {
  position: relative;
}

.search-container input {
  width: 220px; /* Normal size, not full width */
  padding: 8px 30px 8px 10px; /* Space for icon */
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

/* BEST PLACES */
.best-places {
  padding: 50px;
  background: #f9f9f9;
}

.best-places h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* SPLIT HERO */
.hero-split {
  display: flex;
  height: 500px;
}

/* LEFT */
.hero-left {
  width: 60%;
}

/* RIGHT */
.hero-right {
  width: 40%;
  height: auto;
  padding: 60px;
  background: #fff7f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-right p {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

/* FEATURES */
.hero-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.hero-features li {
  margin-bottom: 10px;
  font-size: 15px;
}

.hero-features i {
  color: orange;
  margin-right: 8px;
}

/* BUTTON */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  box-shadow: 0 8px 18px rgba(255, 152, 0, 0.45);
}

/* SLIDER FIX */
.slider {
  width: 90%;
  height: 90%;
}

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

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-right {
    padding: 40px;
  }
  .slider {
    height: 300px;
  }
  .logo-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .item-box {
    gap: 15px;
    display: flex;
    justify-content: center;
  }
  .item-logo {
    width: 30px;
    height: 30px;
  }
  .tray-one,
  .tray-two {
    justify-content: center;
    flex-direction: column;
  }
  .mid-section h3 {
    font-size: 1.5em;
    margin-left: 0px;
    text-align: center;
  }
  .mid-section {
    padding: 10px;
    height: auto;
    flex-wrap: wrap;
    margin-top: 200px;
  }

}

/* CARD */
.place-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.place-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.place-item img {
  width: 170px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

/* TEXT */
.place-info h3 {
  margin: 0 0 8px;
  color: #222;
}

.place-info p {
  margin: 0 0 12px;
  color: #555;
  font-size: 15px;
}

/* EXPLORE BUTTON */
.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.35s ease;
}

.explore-btn i {
  transition: transform 0.35s ease;
}

.explore-btn:hover {
  box-shadow: 0 6px 16px rgba(255, 152, 0, 0.45);
}

.explore-btn:hover i {
  transform: translateX(6px);
}

/* MOBILE */
@media (max-width: 768px) {
  .place-item {
    flex-direction: column;
    text-align: center;
  }

  section{
    width: 100%;
    overflow: hidden;
  }

  .tray-one{
    display: flex;
    flex-direction: column
  }

  .menu-toggle{
    color: #000;
  }

  .place-item img {
    width: 100%;
    height: 180px;
  }

  .sirohi-intro h1{
    font-size: 2em;
  }

  .slider{
    margin: auto;
    margin-top: 30px;
  }

  .logo-item{
    width: 70px;
  }

  .logo{
    width: 70px;
    height: 70px;
  }

  .logo-name{
    font-size: 12px;
  }
}

.logo-item-side {
  display: flex;
  align-items: start;
  border: none;
}

.logo-item-side p {
  margin-left: 10px;
  font-size: 20px;
  font-weight: 500;
}

.side-content {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 15px;
  text-align: center;
}

.item:hover {
  background-color: #f0f0f0;
  border-radius: 5px;
}

.text {
  width: auto;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item p {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
}

.item img {
  width: 40px;
  height: 40px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search Icon */
.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
}

/* Tray Content */
.tray-content {
  padding: 15px;
  flex: 1;
  overflow-y: auto;
}

.tray-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  padding-bottom: 5px;
}

.tray-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tray-content li {
  margin: 10px 0;
  padding: 5px 0;
  cursor: pointer;
  border-bottom: 1px solid #333;
  transition: background 0.2s;
}

.tray-content li:hover {
  background: #444;
}

.logo:hover {
  box-shadow: 0 0 15px #00c6ff;
  transform: translateY(-2px);
}

.logo-items {
  margin-top: 20px;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}

.item-box {
  display: flex;
  margin-top: 15px;
  align-items: center;
  cursor: pointer;
  gap: 21px;
}

.tray-one {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.tray-two {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 25px;
  flex-wrap: nowrap;
}

.logo-name {
  margin-top: 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.mid-section {
  padding: 15px;
}

.mid-section h3 {
  font-size: 1.9em;
  margin-left: 17px;
  font-weight: 500;
}

.lower-section {
  background-color: #fff;
  padding: 10px 20px;
  height: 300px;
}

.lower-section h3 {
  font-size: 1.2em;
  font-weight: 600;
}

.lower-section h3 span {
  height: 10px;
  width: 15px;
  background-color: rgb(255, 51, 51);
  font-size: 0.65em;
  border-radius: 2px;
  color: #fff;
  padding: 2px 5px;
}

.lower-img-cards {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid #b9b9b9;
  border-radius: 8px;
  padding: 15px;
  height: 200px;
}

.img-card {
  height: 120px;
  width: 400px;
  border: 1px solid #b9b9b9;
  border-radius: 8px;
  display: flex;
}

.image {
  height: 120px;
  width: 120px;
}

.text-area {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
}

.text-area p {
  font-size: 1.4em;
  margin-top: 10px;
}

.image img {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

/* FOOTER */
.site-footer {
  background: #222;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

/* ABOUT */
.footer-about h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* LINKS & EXPLORE */
.footer-links h4,
.footer-explore h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-links ul,
.footer-explore ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-explore ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-explore ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-explore ul li a:hover {
  color: orange;
}

/* SOCIAL ICONS */
.footer-social .social-icons {
  display: flex;
  gap: 15px;
}

.footer-social .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #333;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
  background: orange;
  color: #fff;
  transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* ABOUT SIROHI SECTION */
.about-sirohi {
  padding: 80px 20px;
  background: #fdf7f0;
  color: #333;
}

.about-sirohi .container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff6a00;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

/* LEARN MORE BUTTON */
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255, 152, 0, 0.45);
}

/* IMAGE */
.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-sirohi .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-image img {
    max-width: 100%;
  }
}

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

  .footer-about,
  .footer-links,
  .footer-explore,
  .footer-social {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: block;
  }

  .main-container {
    width: 100%;
  }

  nav ul {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    display: none;
  }

  nav ul a {
    margin: 0;
    padding: 15px;
    border-top: 1px solid #333;
  }

  nav ul.active {
    display: flex;
  }
  .upper-imgs {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .imgs-first {
    width: 35%;
    height: auto;
  }

  .imgs {
    width: 15%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .imgs-first {
    width: 100%;
  }

  .imgs {
    width: 48%;
  }

  .upper-imgs {
    flex-wrap: wrap;
  }
}
