 * {
   margin: 0;
    padding: 0;
    box-sizing: border-box;
}





/* HERO SECTION IMAGE */

.hero-section {
  background-image: url("Group\ 1000001796.png");
  /* <-- your background image */
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

/* Transparent Navbar with padding */
.custom-navbar {
  background: transparent;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 10;

}

/* Logo height */
.image-logo {
  height: 50px;
  padding-left: 180%;
  transition: transform 0.3s ease;

}

.image-logo:hover {
  transform: scale(1.1);
}

/* Nav Links */
/* .nav-link {
  color: white !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #DF6951 !important;
  text-decoration: underline;
} */


/* __________extrapractice_____________ */

ul li a{
  color: #DF6951;
  padding: 8px 16px;
  margin: 0 12px;

  transition: all 0.4s ease;
}
ul li a{
  color: white !important; 
}
ul li a:hover{
  background-color: #9da0a3;
  color: white !important; 
}
ul li a::before,
ul li a::after {
  content: "";
  border:2px solid #DF6951;
  opacity:0;
  transition: all 0.4s ease;


}

ul li a ::before{
  bottom: 10px;
  left: 10px;
  border-width: 0 0 2px 2px;

}

 ul li a ::after{
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
 }

 ul li a:hover::before{
  opacity: 1;
  bottom: -8px;
  left: -8px;

 }

 ul li a:hover::after{
  opacity: 1;
  top: -8px;
  right: -8px;
 }



/* Buttons */
.custom-btn {
  border: 2px solid rgb(255, 255, 255)!important;
  background-color: transparent;
  color: white !important;
  padding: 5px 15px;
  transition: 0.3s ease;
  border-radius: 5px;
  margin-right: 20px;
}

.custom-btn:hover {
  background-color: #DF6951!important;;
  border-color: white!important;
  color: white!important;
}
.about-head{
  text-align: center;
  padding-top: 10%;
  color: white;
  font-size: 150px;
   font-family: "Yesteryear", cursive;
}
/* Hero Section */
.hero {
    height: 100vh;
  
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    color: white;
}
.hero-content{
margin-bottom: 290px;
padding-left: 220px;
position: relative;
left: 370px;
}

.search-tour-text {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 500;
    
}



.hero-title {
  
  text-align: center;
  padding-top: 10%;
  color: white;
  font-size: 120px;
   font-family: "Yesteryear", cursive;
    font-weight: 700;
   margin: 0;
}
    

/* features-box */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 4))
    }

}

.slider {
    background: rgb(255, 255, 255);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    top:420px ;
    right: 20%;
    width: 90%;
    max-width: 960px;
    width: 70%;
    display: flex;
    gap: 50px;
    margin: 0 auto;
    justify-content: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    margin-top: -60px;
    border-radius: 15px;
    background-color: rgb(242, 242, 242);

}

.slider::before,
.slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider .slide-track {
    animation: scroll 20s linear infinite;
    display: flex;
    width: calc(250px * 8);
}

.slider .slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    perspective: 100px;
}

.content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: -10px;

}

.content img {
    width: 20px;
    margin-bottom: 20px;

}

.content p {
    font-weight: 400;
    white-space: nowrap;
}

.offcanvas {
    background: transparent !important;
}

.offcanvas-body {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
}

.offcanvas-body img {
    max-width: 150px;
    margin: 20px auto;
    display: block;
    animation: fadeInDown 1s;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badges {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.orange-badge {
    background: #FF6B47;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.card-info {
    padding: 20px;
}

.destination-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.destination-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.rating {
    font-size: 14px;
    color: #FFA500;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-arrow,
.page-num {
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s ease;
    font-size: 14px;
}

.page-num.active {
    background: #FF6B47;
    color: white;
}

.page-arrow:hover,
.page-num:hover {
    background: #f0f0f0;
}

.page-num.active:hover {
    background: #FF6B47;
}

/* Sidebar */
.plan-trip-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.plan-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.plan-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.trip-inputs {
    margin-bottom: 30px;
}

.trip-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.trip-input:focus {
    outline: none;
    border-color: #FF6B47;
}

.price-filter-section {
    margin-bottom: 30px;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.price-slider {
    margin-bottom: 20px;
}

.slider-track {
    position: relative;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 15px;
}

.slider-range {
    position: absolute;
    left: 20%;
    right: 30%;
    height: 100%;
    background: #FF6B47;
    border-radius: 3px;
}

.slider-thumb {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #FF6B47;
    border-radius: 50%;
    top: -5px;
    cursor: pointer;
}

.left-thumb {
    left: 20%;
    transform: translateX(-50%);
}

.right-thumb {
    right: 30%;
    transform: translateX(50%);
}

.price-range-text {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.book-now-button {
    width: 100%;
    background: #FF6B47;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-now-button:hover {
    background: #FF5722;
}

.travel-illustration {
    text-align: center;
    margin-top: 20px;
}

.travel-illustration img {
    max-width: 100%;
    height: auto;
}


.footer {
background-image: url(https://naturehikepakistan.pk/wp-content/uploads/elementor/thumbs/620c2765d1-min-qkjde8jgnh0mjjkc7khfq6ms785e2rrn0w7g5ciruw.jpeg);
background-repeat: no-repeat;
background-size: cover;

  color: #fff;
  font-family: 'Arial', sans-serif;
  position: relative;
  padding-top: 60px;
}
/* footer{
    opacity: 0.7;
} */

/* Top Banner */
.footer-top-banner {
  background-color:  #DF6951;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  margin: 0 auto 40px;
  max-width: 1200px;
  flex-wrap: wrap;
  text-align: center;
  color: #fff;
}

.footer-top-banner h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-top-banner .social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-top-banner .social-links span {
  font-weight: bold;
  margin-right: 10px;
}

.footer-top-banner .social-links a {
  background: #fff;
  color:  #DF6951 ; 
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-top-banner .social-links a:hover {
  background-color:  #e64829;
  color: white;
}

/* Footer Content */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}



.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col i {
  color: #ffffff;
  margin-right: 8px;
}

.footer-col form {
  margin-top: 15px;
}

.footer-col input[type="email"] {
  padding: 10px 15px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #fff;
  border-radius: 30px;
  width: 100%;
  margin-bottom: 10px;
}
input{
    color: white;
}

.footer-col button {
  background-color: #DF6951;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-col button span {
  margin-left: 6px;
}

.footer-col button:hover {
  background-color: #b63a22;
}

/* Bottom Text */
.footer-bottom {
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  color: #ffffff;
  background-color:  #bba8a8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom span {
  color:  #ce3c1e;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .filter-options {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }
    
    .plan-trip-box {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}



@media only screen and (max-width: 768px) {
  .image-logo{
    position: relative;
    right: 170%;

  }
  
  .hero-content{
   margin-right: 950px;
   
  }
 .slider {
    display: none;
  }
}
