/* ================= RESET ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#f5f7f9;
overflow-x:hidden;
}

/* ================= HEADER ================= */
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 15px;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:999;
}

/* logo */
.logo{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:bold;
  font-size:15px;
}

.logo img{
  height:32px;
  width:32px;
  border-radius:6px;
}

/* RIGHT SIDE */
.header-right{
  display:flex;
  align-items:center;
  gap:15px;
}

/* 🔔 NOTIFICATION */
.noti-btn{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

/* bell icon FIX */
.bell-icon{
  width:20px;
  height:20px;
  object-fit:contain;
  display:block;
}

/* 🔴 BADGE (Facebook style) */
.badge{
  position:absolute;
  top:-6px;
  right:-6px;

  background:#ff3b30;
  color:#fff;

  font-size:10px;
  min-width:16px;
  height:16px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  font-weight:bold;

  box-shadow:0 0 0 2px #fff;
}

/* hide if empty */
.badge:empty{
  display:none;
}

/* nav */
nav{
  display:flex;
  gap:15px;
}

nav a{
  text-decoration:none;
  color:#333;
  font-size:14px;
  font-weight:500;
}

/* menu icon */
.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  nav{
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    display:none;
    padding:10px 0;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
  }

  nav.active{
    display:flex;
  }

  nav a{
    padding:12px;
    border-bottom:1px solid #eee;
    text-align:center;
  }
}

/* ================= HERO ================= */
.hero{
height:42vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
position:relative;
overflow:hidden;
border-bottom-left-radius:25px;
border-bottom-right-radius:25px;

/* original image */
background:url('kashmir.jpg') center/cover no-repeat;
}

/* remove color filter → sirf light animation */
.hero::before{
content:"";
position:absolute;
top:-80px;
left:-80px;
width:260px;
height:260px;
background:rgba(255,255,255,0.18);
filter:blur(80px);
border-radius:50%;
animation:heroLight 10s infinite alternate;
z-index:0;
}

/* second moving light */
.hero{
height:42vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
position:relative;
overflow:hidden;
border-bottom-left-radius:25px;
border-bottom-right-radius:25px;

background:url('kashmir.jpg') center/cover no-repeat;

/* smooth animation */
transition:background-image 1.2s ease-in-out;
animation:heroZoom 8s infinite alternate;
}

@keyframes heroZoom{
0%{background-size:100%}
100%{background-size:110%}
}

/* ================= AD BANNER ================= */
.ad-banner{
margin:20px 10px;
border-radius:14px;
overflow:hidden;
position:relative;
}

.ad-banner img{
width:100%;
height:180px;
object-fit:cover;
display:block;
}

.ad-text{
position:absolute;
top:50%;
left:20px;
transform:translateY(-50%);
color:white;
}

.ad-text h2{
font-size:18px;
}

.ad-text p{
font-size:13px;
margin:5px 0;
}

.ad-text button{
padding:6px 14px;
border:none;
background:#ff5722;
color:white;
border-radius:5px;
}

/* ================= MAP ================= */
.kashmir-map{
padding:15px 10px;
}

.kashmir-map h2{
margin-bottom:10px;
}

#map{
width:100%;
height:220px;
border-radius:12px;
}

/* ===== PREMIUM BOTTOM NAV ===== */
.bottom-nav{
position:fixed;
bottom:15px;
left:50%;
transform:translateX(-50%);
width:90%;
background:rgba(255,255,255,0.1);
backdrop-filter:blur(12px);
display:flex;
justify-content:space-around;
padding:12px 0;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
z-index:999;
}
/* nav item */
.nav-item{
text-align:center;
text-decoration:none;
color:black;
font-size:11px;
transition:0.3s;
position:relative;
}
/* icon */
.nav-item img{
width:26px;
height:26px;
display:block;
margin:auto;
transition:0.3s;
}
/* hover animation */
.nav-item:hover{
transform:translateY(-6px);
}
.nav-item:hover img{
transform:scale(1.2);
}
/* active glow */
.nav-item::after{
content:"";
position:absolute;
bottom:-5px;
left:50%;
transform:translateX(-50%);
width:0%;
height:3px;
background:linear-gradient(90deg,#1e88e5,#42a5f5);
border-radius:5px;
transition:0.3s;
}
.nav-item:hover::after{
width:70%;
}
/* floating effect */
@keyframes floatNav{
0%{transform:translateY(0)}
50%{transform:translateY(-3px)}
100%{transform:translateY(0)}
}
.nav-item img{
animation:floatNav 3s ease-in-out infinite;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

nav{
display:none;
}

.hero{
height:30vh;
}

.services-container{
grid-template-columns:repeat(4,1fr);
}

}

/* ================= TOUR PAGE ================= */
.tour-section{
padding:20px 12px 80px;
}

.tour-section h2{
margin-bottom:15px;
font-size:20px;
}

/* ===== GRID ===== */
.tour-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:15px;
}

/* ===== CARD ===== */
.tour-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* ===== IMAGE BOX ===== */
.tour-img-box{
position:relative;
}

.tour-img-box img{
width:100%;
height:170px;
object-fit:cover;
display:block;
}

/* ===== DAYS BADGE ===== */
.tour-days{
position:absolute;
top:10px;
left:10px;
background:#000000aa;
color:white;
padding:4px 8px;
font-size:12px;
border-radius:6px;
}

/* ===== BODY ===== */
.tour-body{
padding:12px;
}

.tour-body h3{
font-size:16px;
margin-bottom:8px;
}

/* ===== META ===== */
.tour-meta{
display:flex;
gap:10px;
font-size:12px;
color:#666;
margin-bottom:8px;
}

/* ===== INCLUDES ===== */
.tour-includes{
font-size:16px;
margin-bottom:8px;
}

/* ===== PRICE ===== */
.tour-price{
font-size:18px;
font-weight:bold;
color:#1e88e5;
margin-bottom:10px;
}

/* ===== BUTTON ===== */
.tour-btns{
margin-bottom:8px;
}

.view-btn{
display:block;
text-align:center;
background:#1e88e5;
color:red;
padding:8px;
border-radius:8px;
text-decoration:none;
font-size:14px;
}

/* ===== EXTRA ===== */
.tour-extra{
display:flex;
justify-content:space-between;
font-size:12px;
color:blue;
margin-top:5px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

.tour-grid{
grid-template-columns:1fr;
}

.tour-img-box img{
height:180px;
}

}

/* ================= TOUR DETAILS PAGE ================= */

.back-btn{
margin:15px;
padding:8px 14px;
border:none;
background:#f1f1f1;
border-radius:8px;
cursor:pointer;
}

/* MAIN */
.tour-details{
padding:10px 15px 80px;
}

/* HERO IMAGE */
.tour-hero img{
width:100%;
height:230px;
object-fit:cover;
border-radius:16px;
}

/* TITLE */
.tour-details h1{
margin-top:12px;
font-size:20px;
font-weight:600;
}

/* RATING */
.tour-rating{
display:flex;
justify-content:space-between;
align-items:center;
margin:10px 0;
font-size:13px;
}

.badge{
background:#ffe5ea;
color:#e91e63;
padding:4px 8px;
border-radius:6px;
}

/* PRICE BOX */
.price-box{
display:flex;
justify-content:space-between;
align-items:center;
background:#fff;
padding:14px;
border-radius:14px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
margin:10px 0;
}

.big-book-btn{
background:#e91e63;
color:white;
padding:10px 18px;
border-radius:8px;
text-decoration:none;
font-weight:500;
}

/* INCLUSION */
.inclusion{
margin:15px 0;
font-weight:600;
}

/* ACTIVITY */
.activity-section{
margin:20px 0;
}

.activity-note{
font-size:12px;
color:#666;
margin-bottom:10px;
}

/* GRID */
.activity-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
}

/* CARD */
.activity-card{
background:#fff;
padding:12px;
border-radius:12px;
text-align:center;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
cursor:pointer;
transition:.2s;
}

.activity-card:hover{
transform:translateY(-2px);
}

.activity-card input{
margin-bottom:5px;
}

.activity-card .icon{
font-size:22px;
}

.activity-card p{
font-size:12px;
margin-top:5px;
}

/* PLACE IMAGE */
.place-card{
padding:8px;
}

.place-img{
width:100%;
height:85px;
object-fit:cover;
border-radius:8px;
margin-bottom:5px;
}

/* ===== DEPARTURE SECTION ===== */
.departure-box{
background:#f3f4f6;
padding:15px;
border-radius:16px;
margin-top:20px;
}

/* MONTHS */
.months-grid{
display:flex;
gap:8px;
overflow-x:auto;
margin:10px 0;
}

.months-grid::-webkit-scrollbar{
display:none;
}

.months-grid button{
background:#f1f1f1;
border-radius:20px;
padding:6px 12px;
border:none;
font-size:12px;
white-space:nowrap;
}

.months-grid button.active{
background:red;
color:white;
}

/* NOTE */
.note{
font-size:12px;
color:#777;
margin-bottom:10px;
}

/* ===== HORIZONTAL CARDS ===== */
.departure-cards{
display:flex;
gap:12px;
overflow-x:auto;
padding:10px 5px;
}

.departure-cards::-webkit-scrollbar{
display:none;
}

/* CARD */
.depart-card{
min-width:260px;
background:white;
border-radius:14px;
padding:12px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
border:1px solid #eee;
transition:.2s;
}

.depart-card.selected{
border:2px solid #e91e63;
}

/* HEAD */
.card-head{
font-size:13px;
color:#666;
margin-bottom:6px;
}

/* BODY */
.card-body{
font-size:13px;
color:#333;
line-height:1.5;
}

/* PRICE */
.card-price{
color:#e91e63;
font-size:16px;
font-weight:bold;
margin:8px 0;
}

/* BUTTONS */
.card-actions{
display:flex;
gap:8px;
}

.book-btn{
flex:1;
background:#e91e63;
color:white;
border:none;
padding:7px;
border-radius:8px;
font-size:13px;
}

.view-btn{
flex:1;
background:#f1f1f1;
border:none;
padding:7px;
border-radius:8px;
font-size:13px;
}

/* MOBILE */
@media(max-width:768px){

.activity-grid{
grid-template-columns:repeat(2,1fr);
}

.tour-hero img{
height:200px;
}

.depart-card{
min-width:230px;
}

}

/* ================= BOOKING PAGE ================= */

.booking-page{
padding:10px 15px 80px;
}

/* HEADER */
.booking-header{
display:flex;
align-items:center;
gap:10px;
padding:10px 15px;
}

.booking-logo{
height:40px;
border-radius:8px;
}

.booking-title{
font-weight:600;
font-size:16px;
}

/* STEP TITLE */
.step-title{
font-weight:600;
margin:18px 0 10px;
font-size:15px;
}

/* BOX */
.traveller-box{
background:#fff;
padding:12px;
border-radius:14px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

/* ROW */
.traveller-row{
display:flex;
justify-content:space-between;
align-items:center;
padding:8px 0;
border-bottom:1px solid #eee;
}

.traveller-row:last-child{
border-bottom:none;
}

/* COUNTER */
.counter{
display:flex;
align-items:center;
gap:10px;
}

.counter button{
width:28px;
height:28px;
border:none;
background:#e91e63;
color:white;
border-radius:6px;
font-size:16px;
}

.counter span{
min-width:20px;
text-align:center;
}

/* ROOM TABLE */
.room-table{
background:#fff;
border-radius:14px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
overflow:hidden;
}

.room-row{
display:grid;
grid-template-columns:1fr 80px 100px;
align-items:center;
padding:10px;
border-bottom:1px solid #eee;
font-size:13px;
}

.room-row.header{
background:#f5f5f5;
font-weight:600;
}

.room-row:last-child{
border-bottom:none;
}

/* NOTE */
.traveller-note{
font-size:12px;
color:#666;
margin:10px 0;
}

/* MEMBER TABLE */
.member-table{
background:#fff;
border-radius:14px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
overflow:hidden;
}

.member-row{
display:grid;
grid-template-columns:1fr 90px 60px 1fr;
gap:6px;
padding:8px;
border-bottom:1px solid #eee;
}

.member-row.header{
background:#f5f5f5;
font-weight:600;
}

.member-row input,
.member-row select{
padding:6px;
border:1px solid #ddd;
border-radius:6px;
font-size:12px;
}

/* CONFIRM BUTTON */
.confirm-btn{
width:100%;
margin-top:20px;
background:#e91e63;
color:white;
border:none;
padding:12px;
border-radius:12px;
font-size:15px;
font-weight:600;
}

/* MOBILE */
@media(max-width:768px){

.member-row{
grid-template-columns:1fr;
}

.member-row.header{
display:none;
}

.room-row{
grid-template-columns:1fr 70px 90px;
}

}

/* ================= HOTEL PAGE ================= */

.packages{
padding:15px;
}

.packages h2{
margin-bottom:12px;
font-size:20px;
}

/* GRID */
.hotel-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:15px;
}

/* CARD */
.hotel-card{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 4px 14px rgba(0,0,0,0.08);
transition:.2s;
}

.hotel-card:hover{
transform:translateY(-3px);
}

/* IMAGE */
.hotel-card img{
width:100%;
height:180px;
object-fit:cover;
}

/* TITLE */
.hotel-card h3{
font-size:16px;
margin:10px 12px 5px;
}

/* DESC */
.hotel-card p{
font-size:13px;
color:#666;
margin:0 12px 10px;
}

/* SELECT BOX */
.select-box{
padding:0 12px 8px;
font-size:13px;
}

.select-box input{
margin-right:6px;
accent-color:#e91e63;
}

/* BUTTON */
.hotel-card button{
width:calc(100% - 24px);
margin:10px 12px 12px;
padding:9px;
border:none;
background:#e91e63;
color:white;
border-radius:10px;
font-size:13px;
cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){

.hotel-container{
grid-template-columns:1fr;
}

.hotel-card img{
height:200px;
}

}

/* FULL PAGE REELS */
.reels-page{
  height:100vh;
  overflow:hidden;
  background:black;
}

/* vertical scroll snap */
.reels-scroll{
  height:100vh;
  overflow-y:scroll;
  scroll-snap-type:y mandatory;
}

/* hide scrollbar */
.reels-scroll::-webkit-scrollbar{
  display:none;
}

.reel{
  height:100vh;
  width:100%;
  scroll-snap-align:start;
  position:relative;
  background:black;
}

/* full screen video */
.reel iframe{
  width:100%;
  height:100%;
  border:none;
}


/**====mobile===**/

/* MOBILE */
@media(max-width:768px){

.founder-contact{
grid-template-columns:repeat(2,1fr);
}

}

/* header */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 15px;
background:#fff;
position:sticky;
top:0;
z-index:1000;
}

/* logo */
.logo{
display:flex;
align-items:center;
gap:8px;
font-weight:600;
}

.logo img{
height:35px;
}

/* menu icon */
.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

/* nav desktop */
nav{
display:flex;
gap:20px;
}

/* mobile */
@media(max-width:768px){

.menu-toggle{
display:block;
}

/* change here */
nav{
position:absolute;
top:60px;
right:10px;   /* right side align */
width:180px;  /* fixed small width */
background:#fff;
display:none;
flex-direction:column;
border-radius:8px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
overflow:hidden;
}

nav.active{
display:flex;
}

nav a{
padding:12px 15px;
display:block;
border-bottom:1px solid #eee;
}

}

/*instal btn */
.install-center{
margin-top:12px;
background:rgba(255,255,255,0.92);
border-radius:50px;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
display:inline-flex;
align-items:center;
gap:10px;
padding:6px 14px;
backdrop-filter: blur(6px);
}

.install-center img{
width:26px;
height:26px;
border-radius:8px;
object-fit:cover;
}

.install-center span{
font-size:13px;
font-weight:600;
color:#222;
}

.install-center button{
background:linear-gradient(135deg,#0f7b43,#19a463);
color:white;
border:none;
padding:5px 14px;
border-radius:20px;
font-size:12px;
font-weight:bold;
cursor:pointer;
box-shadow:0 3px 8px rgba(0,0,0,0.2);
}

/*our servise link*/
.services a{
text-decoration:none;
color:inherit;
}

.hero{
position:relative;
}

.hero-guides{
position:absolute;
bottom:12px;
left:50%;
transform:translateX(-50%);
width:95%;
overflow:hidden;
z-index:5;
}

.hero-guides-track{
display:flex;
gap:10px;
width:max-content;
animation:heroScroll 28s linear infinite;
}

.hero-guide{
width:auto;
white-space:nowrap;
background:rgba(0,0,0,0.65);
backdrop-filter:blur(8px);
color:#fff;
padding:6px 12px;
border-radius:30px;
display:flex;
align-items:center;
gap:6px;
box-shadow:0 5px 20px rgba(0,0,0,0.35);
overflow:visible;
}

.hero-guide img{
width:28px;
height:28px;
border-radius:50%;
object-fit:cover;
flex-shrink:0;
}

.hero-guide .name{
font-size:12px;
font-weight:600;
display:flex;
align-items:center;
gap:5px;
white-space:nowrap;
overflow:visible;
}

.hero-guide .like{
font-size:11px;
opacity:.9;
margin-left:4px;
}

.tick{
width:16px;
height:16px;
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
}

.tick svg{
width:100%;
height:100%;
}

.like{
cursor:pointer;
}

.like.liked{
color:#ff2d55;
font-weight:600;
}

@keyframes heroScroll{
0%{ transform:translateX(0); }
100%{ transform:translateX(-50%); }
}

/*========= HOME PAGE REELS ==========*/
.reels-section{
  padding:18px 14px;
  background:#ffffff;
}

.reels-section h2{
  margin-bottom:12px;
  color:#111;
  font-size:20px;
  font-weight:700;
}

/* OUTER BOX (WHITE GLASS STYLE) */
.reels-container{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding:14px;
  background:#f8fafc;
  border-radius:18px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

/* hide scrollbar */
.reels-container::-webkit-scrollbar{
  display:none;
}

/* REEL CARD (MODERN WHITE CARD) */
.reel-card{
  flex:0 0 auto;
  width:180px;
  height:320px;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  scroll-snap-align:start;
  position:relative;
  transition:all 0.3s ease;
}

/* hover / tap effect */
.reel-card:hover{
  transform:translateY(-5px) scale(1.02);
  box-shadow:0 15px 35px rgba(0,0,0,0.18);
}

/* VIDEO */
.reel-card video{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:16px;
}

/* SOFT OVERLAY */
.reel-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  pointer-events:none;
  border-radius:16px;
}

/* ▶ PLAY ICON */
/* REMOVE THIS COMPLETELY */
.reel-card::before{
  display:none;
}

/* show icon on hover */
.reel-card:hover::before{
  opacity:1;
}

/*==========Gallery home page=========*/
.gallery-preview{
  padding:15px;
}

.gallery-preview h2{
  margin-bottom:10px;
  color:#1c3faa;
}

/* main box */
.gallery-box{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:6px;
  position:relative;
  border-radius:15px;
  overflow:hidden;
  text-decoration:none;
  background:#111;
  padding:6px;
}

/* images */
.gallery-box img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:10px;
}

/* overlay */
.gallery-box .overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  display:flex;
  justify-content:center;
  align-items:center;
  color:white;
  
  
