
.navbar{
    background-color:white;
    padding:1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    color: white;
}
.logo{
    font-size: 24px;
    font-weight: bold;
    margin-left: 90px;
}
.nav-links{
    margin-right: 70px;
    list-style: none;
    margin-top: 30px;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-links li{
    margin-right: 20px;
}
.nav-links a{
    color: #1a1818;
    text-decoration: none;
    font-size: 16px;
}
.nav-links a:hover{
    color: rgb(201, 84, 17);
    font-weight: bold;
    border-bottom: white solid 2px;
}

.menu-icon{
    display: none;
    color: #020202;
    font-size: 24px;
    cursor: pointer;
}
#menu-toggle{
    display: none;
}
.btn{
    border: none;
    margin-top: -10px;
}
.btn1{
    border: 1px solid black;
    border-radius: 3px;
    margin-top: -10px;
    background-color: white;
    color: black;
}
.btn:hover{
    background-color: #fa793d;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    transition: 0.3s;
}
.btn1:hover{
    background-color: #fa793d;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    transition: 0.3s;
} 

/* responsive */
 @media (max-width: 768px){
    .nav-links{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: rgb(241, 218, 166);
        width: 100%;
        padding: 20px;
    }
    #menu-toggle:checked + .menu-icon + .nav-links{
        display: flex;
    }
    .nav-links li{
        margin-bottom: 20px;
    }
    .menu-icon{
        display: block;
        cursor: pointer;
    }
} 

/* HERO SECTION */
.hero-section {
  display: flex;
  margin-top: -20px;
  align-items: center;
  padding: 60px 80px;
  flex-wrap: wrap;
  background-color: #fff;
}

.hero-text {
  flex: 1;
  max-width: 50%;
}

.hero-text h6 {
  color: #DF6951;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: bold;
}

.hero-text h1 {
  font-size: 52px;
  font-family: serif;
  font-weight: 900;
  color: #181E4B;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-text h1 span {
  text-decoration: underline #DF6951 5px;
  text-underline-offset: 10px;
}

.hero-text p {
  color: #5E6282;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.findout-btn {
  background-color:rgb(241, 165,1);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}
.findout-btn:hover {
  background-color: #DF6951;
  color: white;
  text-decoration: none;
  transform: scale(1.1);
  transition: 0.3s;
}
.play-demo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.play-demo img {
  width: 80px;
  height: 80px;
}

.play-demo p {
  font-size: 16px;
  font-weight: 500;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
}

/* responsive */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
    margin-top: 0;
  }

  .hero-text {
    max-width: 100%;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
     align-items: flex-start;
    gap: 15px;
  }

  .findout-btn {

    width: 50%;
    text-align: center;
  }

  .play-demo {
    flex-direction: row;
    align-items: center;
  }

  .play-demo img {
    width: 60px;
    height: 60px;
  }

  .hero-image {
    text-align: center;
    margin-top: 30px;
    width: 100%;
  }

  .hero-image img {
    width: 90%;
    max-width: 400px;
  }
}

/* service  */
.services-section {
  padding: 60px 40px;
  background-color: white;
  text-align: center;
}
h5{
  font-size: 15px;
}
.category {
  color: #000000;
  margin-bottom: 10px;
}


.services-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-card {
  flex: 1 1 calc(25% - 20px);
  background-color: transparent;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card img {
  height: 60px;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 18px;
  color: #181E4B;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #5E6282;
  line-height: 1.6;
}
.service-card:hover {
  background-color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* responsive */
@media (max-width: 768px) {
  .services-cards {
    justify-content: center;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px);
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 1 1 100%;
  }
}

/* destinatioon */
.top-destinations {
  background-color: white;
  text-align: center;
}

.destination-cards {
  display: flex;
  margin-left: 150px;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.destination-card {
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(10, 0, 0, 0.08);
  transition: 0.3s ease;
}

.destination-card img {
  width: 300px;
  height: 220px;
}

.destination-info {
  padding: 20px;
  text-align: left;
}

.title-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #181E4B;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.trip-details {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5E6282;
  font-size: 14px;
}

.trip-details img {
  width: 18px;
  height: 18px;
}
.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(10, 0, 0, 0.15);
  transition: 0.3s ease;
}
/* responsive */

@media (max-width: 768px) {
  .destination-cards {
    justify-content: center;
    margin-left: 0;
    gap: 10px;
  }

  .destination-card {
    max-width: 50%;
  }

  .destination-card img {
    width: 100%;
    margin-top: 20px;
    height: auto;
  }

  .destination-info {
    text-align: center;
    padding: 15px;
  }

  .title-price {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .trip-details {
    justify-content: center;
  }
  .trip-details img {
  width: 15px;
  height: 15px;
}
}
/* booking */
.booking-trip {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 100px;
  gap: 50px;
  padding: 40px;
  flex-wrap: wrap;
}

.left-section {
  flex: 1;
  max-width: 500px;
}

.set {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.set img {
  width: 50px;
  height: 50px;
}

.card{
  margin-right: 200px;
  border-radius: 20px;
  margin-top: 100px;
}
.card img{
  width: 90%;
  margin-top: 20px;
  margin-left: 15px;
  height: 100%;
}
.top-icon{
  position: relative;
  margin-top: -150px;
  margin-left:170px;
}
.top-icon:hover{
  transform: scale(1.1);
  transition: 0.5s ease;
}
.opt:hover{
  background-color: #918b89;
  color: white;
  text-decoration: none;
  transform: scale(1.1);
  transition: 0.3s;
}
.card-text{
  font-size: 12px;
}

.card-body{
  width: 200px;
  margin-right: 100px;
}
/* responsive */
@media screen and (max-width: 768px) {
  .booking-trip {
    flex-direction: column;
    margin-left: 0;
    padding: 20px;
    gap: 30px;
  }

  .left-section {
    max-width: 100%;
    text-align: center;
  }

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

  .card {
    width: 300px;
    height: 350px;
    margin-right: -30px;
    margin-top: 40px;
  }

  .card img {
   display: block;
  width: 80%;
  max-width: 100%;
  height: auto;
  margin: 20px auto 0;
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease; 
  }

  .top-icon {
    margin-top: -35px;
    margin-left: 40px;
  }

  .card-body {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}


/* about us */
.text-image-wrapper {
  display: flex;
  align-items: center; 
  justify-content: space-between; 

}

.text-part {
  max-width: 60%;
  margin-left: 200px;
  margin-top: -100px;
}

.text-image-wrapper img {
  max-width: 35%;
  height: auto;
  margin-right: 180px;
  margin-top: 50px;
}
.text-image-wrapper img:hover{
  transform: scale(1.1);
  transition: 0.5s ease;
}
/* responsive */
@media (max-width: 768px) {
  .text-image-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-part {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 20px;
  }

  .text-image-wrapper img {
    max-width: 90%;
    margin: 20px auto 0;
  }
}
/* names */


.clients{
    margin-top: 20px;
    display: flex;
    justify-content: center;
     gap:60px;
     flex-wrap: wrap;
}
.clients img:hover{
    transform: scale(1.1);
    transition: 0.3s;
}
.clients img:hover{
    transform: scale(1.1);
    transition: 0.3s;
}
.clients img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* contact */
.contact {
  background-color:#F9F7FE;
  margin-top: 20px;
  margin-left: 300px;
  width: 800px;
  border-radius: 80px 20px 20px 20px;
  height: 300px;
  padding: 60px 40px;
  text-align: center;
}
.contact-text{
  color: rgb(94,98,130);
}
.arrow{
  width: 50px;
  height: 50px;
  position: relative;
  margin-top: -270px;
  margin-left: 720px;
}
/* input */
input{
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: black;
  padding: 10px;
}
.subscribe-btn{
  background-color: #DF6951;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
/* responsive */
@media (max-width: 768px) {
  .contact {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
    height: auto;
    padding: 40px 20px;
    border-radius: 40px 15px 15px 15px;
  }

  .arrow {
    margin-left: 0;
    margin-top: 20px;
    display: block;
    position: static;
    margin: 20px auto 0;
  }

  input {
    width: 100%;
    margin-bottom: 10px;
  }

  .subscribe-btn {
    width: 100%;
    margin-left: 0;
  }
}
/* footer */
.footer {
            display: flex;
            margin-top: 180px;
            justify-content: space-around;
            align-items: flex-start;
            padding: 50px 50px;
            font-family: sans-serif;
            color: #333;
            line-height: 1.6;
        }

        .footer-left {
            flex: 1;
        }

        .footer-left h2 {
            font-size: 2em;
            margin-bottom: 5px;
        }

        .footer-left p {
            font-size: 0.9em;
            color: #777;
        }

        .footer-section {
            flex: 1;
        }

        .footer-section h3 {
            font-size: 1.1em;
            margin-bottom: 10px;
            color: #222;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section ul li {
            margin-bottom: 5px;
        }

        .footer-section a {
            text-decoration: none;
            color: #555;
            font-size: 0.95em;
        }

        .footer-section a:hover {
            color: #eb6c1d;
        }

        .footer-app {
            text-align: center;
        }

        .footer-app h3 {
            font-size: 1.1em;
            margin-bottom:30px;
            color: #222;
        }

        .app-icons a {
            display: inline-block;
            margin: 0 5px;
        }

        .app-icons img {
            height: 30px;
            margin-bottom: 10px;
        }

        .social-icons {
            text-align: center;
            margin-top: -15px;
        }

        .social-icons a {
            display: inline-block;
            margin: 0 8px;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            color: #555;
            font-size: 0.8em;
        }

        .social-icons a:hover {
           transform: scale(1.1);
            transition: 0.3s;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.8em;
            color: #777;
        }

        /* responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-left,
  .footer-section,
  .footer-app {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-section h3,
  .footer-app h3 {
    margin-top: 10px;
  }

  .app-icons a {
    margin: 0 8px;
  }

  .social-icons {
    gap: 12px;
    margin-top: 10px;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
      