@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

:root{
    --primary-color: #0a0d14;
    --primary-color-light: #20242f;
    --secondary-color: #f49e09;
    --extra-light: rgba(255, 255, 255, 0.5);
    --white: #ffffff;
    --max-width: 1200px;
    --header-font: "Poppins", sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section__header {
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--header-font);
    text-align:center;
}

.section__subheader {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color: white;
    background-color: orangered;
    cursor: pointer;
}

img{
    width: 100%;
    display: flex;
}

a{
    text-decoration: none;
}

html,
body {
scroll-behavior: smooth;
}

body{
  font-family: "Poppins", sans-serif;
  font-style: normal;
  color: var(--white);
  background-color: var(--primary-color);
}

header {
    background-image: linear-gradient(to top, var(--primary-color), transparent),
    url(/images/auto-.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

nav {
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--extra-light);
}

.nav__bar{
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__logo a{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px; 
  font-weight: bold;
  font-size: 18px;
  color: white;
}

.logo__img {
  height: 80px;
  width: auto;
}

.nav__links{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.link a{
    padding: 1.5rem 5px;
    font-weight: 500;
    color: var(--white);
    transition: 0.3s;
}

.link a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.link span{
    padding: 1rem 0;
    color: var(--white);
    cursor: pointer;
}

.header__container {
    padding: 12rem 1rem;
}

.header__container h1 {
    margin-bottom: 1rem;
    max-width: 700px;
    font-size: 4rem;
    font-family: var(--header-font);
}

.header__container h4 {
    position: relative;
    margin-left: 3rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 500;
}

.header__container h4::after {
    position: absolute;
    content: "";
    left: -3rem;
    top: 13px;
    transform: translateY(-50%);
    height: 2px;
    width: 2rem;
    background-color: var(--white);
}

.about__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 4rem 2rem;
    background-color: #0d0d0d; /* Matches dark background from image */
    color: #fff;
}

.about__content .section__header {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.about__content .section__subheader {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
    text-align: left;
}

.about__card p {
    font-size: 0.9rem;
    color: #ccc;
}

.about__image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.read__more-btn {
    display: inline-block;
    margin-top: 1rem;
    background-color:orangered;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.read__more-btn:hover {
    background-color: #e0a500;
}

@media (max-width: 768px) {
    .about__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about__content .section__header,
    .about__content .section__subheader {
        text-align: center;
    }

    .about__card {
        border-right: none;
        border-bottom: 2px solid #fbbf24;
    }

    .about__card:last-child {
        border-bottom: none;
    }
}

/* Kathmandu itinerary */
.duration{
  font-size:30px;
  font-family: 'Times New Roman';
  font-weight: 600;
  color: rgb(13, 190, 222);
}

.duration-head, .b{
  color: rgb(245, 249, 250);
  font-size: 15px;
  font-family: Arial;
}

.veh {
  font-family: Arial, sans-serif;
  background: #0c0c0c;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh auto;
  margin: 0;
}

.main-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.container {
  text-align: center;
  max-width: 1000px;
  padding: 20px;
}

/* Day display */
.day-display {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Route background */
/* Updated route container - now vertical */
.route {
  position: relative;
  width: 140px;               /* Increased width */
  height: 90vh;               /* Taller for more motion */
  background-color: #f1f1f1;
  border-radius: 15px;
  border: 2px solid #aaa;
  margin-top:-15px;
  overflow: hidden;
}

.route::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 100%;
  background-image: repeating-linear-gradient(
    to bottom,
    #ccc 0,
    #ccc 15px,
    transparent 15px,
    transparent 30px
  );
  transform: translateX(-50%);
  z-index: 1;
}

/* Updated vehicle style */
#vehicle {
  position: absolute;
  top: 0;
  left: 40px;                     /* Centered on new wider route */
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  animation: vehicle-bounce 0.6s infinite alternate ease-in-out;
  transition: top 0.5s ease;
}

/* Simple bounce animation to simulate motion */
@keyframes vehicle-bounce {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-5px);
  }
}

/* Image for car */
.car {
  background-image: url('images/car.png');
}

/* Image for trek */
.trek {
  background-image: url('images/trekking.png');
}

/* image for flight */
.flight {
  background-image: url('images/flight.png');
}

select#itinerarySelect {
  padding: 5px 10px;
  font-size: 14px;
  margin: 10px 0;
  border-radius: 5px;
}

/* Itinerary text style */
.itinerary {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
  color:  rgb(24, 157, 218);
}

.day-description {
  display: none;
  font-size: 17px;
  margin: 15px auto 25px auto;
  max-width: 800px;
  color: #555;
  line-height: 1.6;
}

.heading {
  color: rgb(24, 157, 218);
}
.para{
  color: #979494;
}
.meal{
  color:#555;
}

/* Show only the active day's description */
.day-description.active {
  display: block;
}

.controls {
  text-align: center;
  margin-top: 15px;
}

/* Buttons */
.controls button {
  padding: 10px 25px;
  margin: 5px;
  margin-top: 20px;
  font-size: 16px;
  background: orange;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.controls button:hover {
  background: orangered;
}

/* discover section */
.discover{
  background-image:linear-gradient(
    to bottom,rgba(255, 255, 255, 0.05),
    transparent
  );
  height: 1100px;
}

.discover__grid{
  margin-top: 4rem;
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 2rem;
}

.discover__card {
  max-width: 320px;
  margin: auto;
}

.discover__card:nth-child(2){
  transform: translateY(5rem);
}

.discover__image{
  position: relative;
}

.dis-img{
  margin-top: -3rem;
}
.discover__image::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to top, var(--primary-color),transparent);
}

.discover__card__content{
  padding: 0 2rem;
  transform: translateY(-50%);
}

.discover__card__content h4{
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--secondary-color);
}

.discover__card__content h3{
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--secondary-color);
}

.discover__card__content p{
  margin-bottom: 2rem;
}

.discover__btn{
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 1rem;
  color: var(--white);
  background-color: transparent;
  border: 1px solid var(--white);
  cursor: pointer;
}

.a{
  border: none;
}

/* hero content */
.hero__container p{
  text-align:center;
  font-size: 7rem;
  font-weight: 800;
  font-family: Arial;
  border-radius: none;
  background-image: url(images/3..jpg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--extra-light);
}

/* contact */
.contact{
   background-image: linear-gradient(to top, transparent),
    url(/images/last..jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#contact{
  height: 500px;
}

.contact__container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  margin-left: 70px;
}

.contact__card{
  max-width: 250px;
  margin-top: 150px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 3px solid var(--extra-light);
  border-radius: 100%;
  cursor: pointer;
}

.contact__card span{
  margin-bottom: 1rem;
  font-size: 2rem;
  transition: 0.3s;
}

.contact__card:hover span{
  color: var(--secondary-color);
}

.contact__col h4{
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Times New Roman', Times, serif;
}

.h4k{
  margin-top: 150px;
}

.contact__col h5{
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--header-font);
}

.footer__container{
 text-align: center;
}

.footer__container h4{
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.footer__socials{
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.footer__socials span a{
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}

.footer__socials span a:hover{
  color:var(--secondary-color)
}

.footer__nav{
  margin-top: 20px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer__link a{
  font-weight: 500;
  color: var(--white);
}

.footer__link a:hover{
  color: var(--secondary-color);
}

@media(width < 900px){
  .link:not(.search){
    display: none;
  }

  .about__container{
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }

  .about__container :is(.section__header, .section__subheader){
    text-align: center;
  }

  .about__image{
    grid-area: 1/1/2/2;
  }

  .discover__grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__container{
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__col:first-child{
    grid-area: 1/1/2/3;
    text-align: center;
  }
}

@media (width < 600px){
  .header__container{
    text-align: center;
  }

  .header__container h4 {
    margin-left: 0;
  }

  .about__card{
    border: none;
  }

  .discover__grid{
    grid-template-columns: repeat(1, 1fr);
  }

  .discover__card:nth-child(2){
    transform: translateY(0);
  }

  .hero__container p{
    font-size: 6rem;
  }

  .contact__container{
    grid-template-columns: repeat(1, 1fr);
  }

  .contact__col:first-child{
    grid-area: unset;
  }
}

/* form */
.form{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #1f242d;
}

.form_contact h2{
  font-size: 40px;
  color:#ededed;
  text-align: center;
  margin-bottom: 10px;
}

.form_contact form{
  width: 600px;
  text-align: center;
}

form .input-box{
  display: flex;
  justify-content: space-between;
}

.input-box .input-field {
  width: 48.5%;
}

.field .item{
  width: 100%;
  padding: 18px;
  background: transparent;
  border: 2px solid #0ef;
  outline: none;
  border-radius: 6px;
  font-size: 16px;
  color: #ededed;
  margin: 12px 0;
}

.field .item::placeholder{
  color: rgba(255, 255, 255, 0.3);
}

.field .error-txt{
  font-size: 14.5px;
  color: #d93025;
  text-align: left;
  margin: -5px 0 10px;
  display: none;
}

form .textarea-field .item{
  resize:none;
}

form .textarea-field .error-txt{
  margin-top: -10px;
}

form button{
  padding: 12px 32px;
  background: #0ef;
  border: none;
  outline: none;
  border-radius: 6px;
  box-shadow: 0 0 10px #0ef;
  font-size: 16px;
  color: #333;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

form button:hover{
  box-shadow: none;
}

/* lucknow itinerary */
.services{
  background-image:linear-gradient(
    to bottom, #1f242d,
    transparent
  );
  height: 1900px;
}

.lko_headings h1{
  text-align:right;
  max-width: 1000px;
  padding: 30px;
}

.services .lko_box-container{
  display:flex;
  flex-wrap: wrap;
  gap: 3.5rem;
  margin: 20px;
}

.services .lko_box-container .box{
  flex: 1 1 25rem;
  height: 400px;
  width: 200px;
  border-radius: 3rem;
  padding: 1rem;
  text-align:left;
  background-color: black;
}

.services .lko_box-container .box i{
  padding: 1rem;
  font-size: 3rem;
  color:rgba(16, 197, 247, 0.79);
}

.services .lko_box-container .box h2{
  font-size: 1.7rem;
  text-align:center;
  color: whitesmoke;
}

.services .lko_box-container .box h3{
  font-size: 1.1rem;
  text-align:center;
  font-weight:500;
  color: rgb(157, 199, 211);
}

.services .lko_box-container .box p{
  text-align:center;
  padding: 1rem;
  font-size: 0.9rem;
  color:#908d8d;
}

.services .lko_box-container .box:hover{
  box-shadow: 0 1rem 2rem rgba(16, 197, 247, 0.79);
}