* {
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

.container {
width:90%;
margin:auto;
}



/* HEADER */

.header {
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:fixed;
width:100%;
z-index:1000;
}

.header-flex {
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.nav a {
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}

.nav .active {
color:#2b7cff;
border-bottom:2px solid #2b7cff;
}



/* HERO */

.tour-hero {

height:260px;

background:
linear-gradient(
90deg,
rgba(43,124,255,0.75),
rgba(99,193,50,0.75)
),
url('khandala.jpg');

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;

color:white;

margin-top:80px;
}

.hero-content {
text-align:center;
}

.breadcrumb {
font-size:13px;
margin-bottom:10px;
}

.tour-hero h1 {
font-size:42px;
font-weight:700;
}



/* FILTER */

.search-filter {
padding:40px 0;
background:#f7f7f7;
}

.filter-box {
display:grid;
grid-template-columns:repeat(6,1fr);
gap:15px;
width:90%;
margin:auto;
}

.filter-box input,
.filter-box select {
padding:12px;
border:1px solid #ddd;
}

.find-btn {
background:#2b7cff;
color:white;
border:none;
}



/* CATEGORIES */

.categories {

margin-top:20px;
width:90%;
margin-left:auto;
margin-right:auto;

font-size:14px;
}

.categories label {
margin-right:15px;
}



/* TOURS */

.tours {
padding:40px 0;
}

.tours-grid {
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
width:90%;
margin:auto;
}



/* CARD */

.tour-card {

background:white;

box-shadow:0 5px 15px rgba(0,0,0,0.1);

border-radius:6px;

overflow:hidden;

transition:0.3s;
}

.tour-card:hover {

transform:translateY(-8px);
}



.tour-img {
position:relative;
}

.tour-img img {

width:100%;
height:220px;

object-fit:cover;
}



.price {

position:absolute;

top:10px;
left:10px;

background:#2b7cff;

color:white;

padding:6px 12px;

font-size:14px;
}



.badge {

position:absolute;

top:10px;
right:10px;

background:#63c132;

color:white;

padding:6px 12px;

font-size:12px;
}



.tour-card h3 {

padding:15px;

font-size:18px;
}



.tags {

padding:0 15px;

color:#777;

font-size:14px;
}



.days {

display:block;

padding:15px;

font-size:14px;

color:#2b7cff;
}

/* LOAD MORE */

.load-more {

text-align:center;

margin-top:40px;

}

.load-btn {

background:#2b7cff;

color:white;

padding:14px 28px;

border:none;

font-size:15px;

cursor:pointer;

border-radius:4px;

transition:0.3s;

}

.load-btn:hover {

background:#1a5fd1;

}



/* FOOTER */

.footer {

background:#f7f7f7;

padding:60px 0;

margin-top:60px;

}

.footer-grid {

display:grid;

grid-template-columns:repeat(6,1fr);

gap:30px;

width:90%;

margin:auto;

font-size:14px;

}

.footer h4 {

margin-bottom:15px;

font-size:16px;

}

.footer ul {

list-style:none;

}

.footer li {

margin-bottom:8px;

color:#777;

cursor:pointer;

}

.footer input {

width:100%;

padding:10px;

margin-top:10px;

margin-bottom:10px;

border:1px solid #ddd;

}

.subscribe-btn {

background:#2b7cff;

color:white;

border:none;

padding:10px 20px;

cursor:pointer;

}



.bottom-footer {

margin-top:40px;

text-align:center;

font-size:13px;

color:#777;

border-top:1px solid #ddd;

padding-top:20px;

}

/* IMAGE ZOOM */

.tour-img img {

transition:0.5s;

}

.tour-card:hover img {

transform:scale(1.08);

}



/* BADGE STYLE */

.badge.green {

background:#63c132;

font-weight:600;

}



/* SHADOW HOVER */

.tour-card:hover {

box-shadow:0 15px 35px rgba(0,0,0,0.2);

}


/* Buttons Container */

.tour-buttons {
display: flex;
gap: 10px;
margin-top: 15px;
justify-content: center; /* buttons center me aayenge */
}

/* Common Button Style */

.tour-buttons .btn {
padding: 8px 16px;   /* height thodi kam */
border-radius: 6px;
text-decoration: none;
color: white;
font-weight: 600;
transition: 0.3s;
font-size: 14px;
}

/* Call Button */

.call-btn {
background-color: #dfc326;
}

.call-btn:hover {
background-color: #9b7200;
}

/* WhatsApp Button */

.whatsapp-btn {
background-color: #25D366;
}

.whatsapp-btn:hover {
background-color: #09833a;
}

.hidden-card {
display: none;
}

/* Load More Button Style */

.load-more-container {
text-align: center;
margin-top: 30px;
}

.load-more-btn {
padding: 12px 25px;
background-color: #00b8d8;
color: white;
border: none;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}

.load-more-btn:hover {
background-color: #008f45;
}