nahi ya html{
    scroll-behavior: smooth;
}*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{

background:#111;

color:white;

}

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.logo{
    font-size:32px;
    font-weight:bold;
    color:#ff9800;
    letter-spacing:2px;
}

nav ul{

display:flex;

list-style:none;

}

nav ul li{

margin-left:30px;

}

nav ul li a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
}

nav ul li a:hover{
    color:#ff9800;
}

.hero{

height:90vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

}

.hero h1{

font-size:70px;

color:orange;

}

.hero p{

font-size:25px;

margin-top:20px;

}

button{

margin-top:40px;

padding:15px 35px;

font-size:20px;

background:orange;

border:none;

cursor:pointer;

border-radius:8px;

}

button:hover{

background:white;

}
.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.hero video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.content{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.content h1{
    font-size:70px;
    color:white;
    animation:zoom 3s infinite alternate;
}

.content p{
    font-size:28px;
    margin-top:20px;
}

@keyframes zoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.1);
    }
}
.main-title{
    font-size:72px;
    color:#ffffff;
    text-shadow:0 0 20px #00d9ff;
    animation:glow 2s infinite alternate;
}

.subtitle{
    font-size:24px;
    margin-top:20px;
    color:white;
}

.explore-btn{
    display:inline-block;
    margin-top:35px;
    padding:15px 40px;
    background:#ff9800;
    color:white;
    text-decoration:none;
    border-radius:40px;
    font-size:20px;
    transition:0.3s;
}

.explore-btn:hover{
    background:white;
    color:black;
    transform:scale(1.08);
}

.scroll-down{
    position:absolute;
    bottom:25px;
    font-size:40px;
    animation:move 1.5s infinite;
}

@keyframes glow{
    from{
        text-shadow:0 0 10px #00d9ff;
    }
    to{
        text-shadow:0 0 30px #00d9ff;
    }
}

@keyframes move{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(10px);
    }
    100%{
        transform:translateY(0);
    }
}
/* ==========================
   PLACES SECTION
========================== */

.places{
    padding:80px 8%;
    background:#f5f5f5;
}

.places h2{
    text-align:center;
    font-size:40px;
    color:#222;
    margin-bottom:50px;
}

.places-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.place-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    transition:0.3s;
    cursor:pointer;
}

.place-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.place-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.place-card h3{
    text-align:center;
    padding:18px;
    color:#222;
    font-size:22px;
}
.place-info{
    padding:20px;
}

p{.place-info 
    color:#666;
    font-size:15px;
    margin:12px 0 18px;
    line-height:1.6;
}

   
.place-info p{
    color:#d4af37;
    font-size:15px;
    line-height:1.6;
    text-align:center;
    margin:12px 0 18px;
}

.details-btn{
    display:inline-block;
    background:#ff9800;
    color:#fff;
    text-decoration:none;
    padding:10px 22px;
    border-radius:30px;
    transition:.3s;
    font-weight:bold;
}

.details-btn:hover{
    background:#ff6a00;
    transform:scale(1.05);
}
/* ==========================
   GALLERY
========================== */

.gallery{

padding:80px 8%;

background:white;

}

.gallery h2{

text-align:center;

font-size:42px;

margin-bottom:30px;

}

.gallery-buttons{

text-align:center;

margin-bottom:40px;

}

.gallery-buttons button{

padding:12px 30px;

margin:10px;

border:none;

background:#ff9800;

color:white;

font-size:18px;

border-radius:30px;

cursor:pointer;

transition:.3s;

}

.gallery-buttons button:hover{

background:#ff6a00;

}

.gallery-container{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.gallery-item{

overflow:hidden;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.gallery-item img{

width:100%;

height:250px;

object-fit:cover;

transition:.4s;

}

.gallery-item img:hover{

transform:scale(1.1);

}
/* ==========================
   WELCOME SECTION
========================== */

.welcome{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    padding:90px 8%;
    background:white;
}

.welcome-text{
    flex:1;
}

.welcome-text h2{
    font-size:42px;
    margin-bottom:25px;
    color:#222;
}

.welcome-text p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.features{
    margin-top:30px;
}

.features div{
    margin:12px 0;
    font-size:18px;
    font-weight:600;
}

.welcome-btn{
    display:inline-block;
    margin-top:35px;
    background:#ff9800;
    color:white;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
}

.welcome-btn:hover{
    background:#ff6a00;
}

.welcome-image{
    flex:1;
}

.welcome-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}
/* ==========================
   FLOATING WHATSAPP
========================== */

.whatsapp-float{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

border-radius:50%;

z-index:9999;

animation:whatsappPulse 2s infinite;

}

.whatsapp-float img{

width:100%;

height:100%;

border-radius:50%;

box-shadow:0 10px 20px rgba(0,0,0,.3);

transition:.3s;

}

.whatsapp-float:hover img{

transform:scale(1.12);

}

@keyframes whatsappPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}
/* ==========================
   BOOK NOW BUTTON
========================== */

.book-btn{
    background:#ff9800;
    color:#fff !important;
    padding:12px 25px;
    border-radius:30px;
    font-weight:bold;
    animation:bookPulse 2s infinite;
    transition:.3s;
}

.book-btn:hover{
    background:#ff6a00;
    transform:scale(1.08);
}

@keyframes bookPulse{

0%{
box-shadow:0 0 0 rgba(255,152,0,.7);
}

50%{
box-shadow:0 0 20px rgba(255,152,0,.9);
}

100%{
box-shadow:0 0 0 rgba(255,152,0,.7);
}

}
/* ==========================
   LOCATION SECTION
========================== */

.location{
    padding:90px 8%;
    background:#f4f4f4;
}

.location h2{
    text-align:center;
    font-size:42px;
    color:#222;
    margin-bottom:50px;
}

.location-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.location-card{
    background:white;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.3s;
}

.location-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.location-card h3{
    margin-bottom:20px;
    color:#222;
}

.location-card a{
    display:inline-block;
    padding:12px 28px;
    background:#ff9800;
    color:white;
    text-decoration:none;
    border-radius:30px;
    transition:.3s;
}

.location-card a:hover{
    background:#ff6a00;
}
/* ==========================
   PACKAGES
========================== */

.packages{
padding:90px 8%;
background:white;
}

.packages h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
color:#222;
}

.package-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.package-card{
background:white;
border-radius:20px;
padding:35px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
position:relative;
transition:.3s;
}

.package-card:hover{
transform:translateY(-10px);
}

.popular{
border:3px solid #ff9800;
}

.badge{
position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
background:#ff9800;
color:white;
padding:8px 18px;
border-radius:30px;
font-size:14px;
font-weight:bold;
}

.package-card h3{
margin-top:20px;
margin-bottom:20px;
text-align:center;
color:#222;
}

.package-card ul{
list-style:none;
padding:0;
}

.package-card ul li{
margin:12px 0;
color:#555;
}

.package-card h4{
margin-top:25px;
text-align:center;
font-size:28px;
color:#ff9800;
}

.package-btn{
display:block;
text-align:center;
margin-top:25px;
background:#ff9800;
color:white;
text-decoration:none;
padding:14px;
border-radius:30px;
font-weight:bold;
transition:.3s;
}

.package-btn:hover{
background:#ff6a00;
}
/* ==========================
   MOST POPULAR GLOW
========================== */

.popular{

animation:goldGlow 2s infinite;

}

@keyframes goldGlow{

0%{

box-shadow:0 0 15px rgba(255,193,7,.4);

}

50%{

box-shadow:0 0 35px rgba(255,193,7,.9);

}

100%{

box-shadow:0 0 15px rgba(255,193,7,.4);

}

}
/* ==========================
   BOOKING SECTION
========================== */

.booking{
    padding:90px 8%;
    background:#f7f7f7;
}

.booking h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#222;
}

.booking-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.booking-info{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.booking-info h3{
    margin-bottom:25px;
    color:#ff9800;
}

.booking-info p{
    margin:18px 0;
    font-size:18px;
    color:#444;
}

.call-btn,
.whatsapp-btn{
    display:inline-block;
    margin-top:20px;
    margin-right:15px;
    padding:14px 25px;
    text-decoration:none;
    color:white;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.call-btn{
    background:#ff9800;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:scale(1.05);
}

.booking-form{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.booking-form textarea{
    height:120px;
    resize:vertical;
}

.booking-form button{
    width:100%;
    background:#ff9800;
    color:white;
    border:none;
    border-radius:10px;
    padding:16px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.booking-form button:hover{
    background:#ff6a00;
}
/*==========================
FOOTER
==========================*/

.footer{

background:#111;

color:white;

padding:60px 8% 25px;

}

.footer-container{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:50px;

}

.footer h2{

color:#ff9800;

margin-bottom:20px;

}

.footer h3{

margin-bottom:20px;

color:#ff9800;

}

.footer p{

line-height:1.8;

color:#ddd;

}

.footer ul{

list-style:none;

padding:0;

}

.footer ul li{

margin:12px 0;

}

.footer ul li a{

color:#ddd;

text-decoration:none;

transition:.3s;

}

.footer ul li a:hover{

color:#ff9800;

}

.footer hr{

margin:40px 0 20px;

border:.5px solid #444;

}

.copyright{

text-align:center;

color:#aaa;

font-size:15px;

}
/*==========================
BACK TO TOP
==========================*/

.top-btn{

position:fixed;

bottom:100px;

right:30px;

width:55px;

height:55px;

background:#ff9800;

color:white;

text-decoration:none;

font-size:28px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

box-shadow:0 8px 20px rgba(0,0,0,.3);

transition:.3s;

z-index:999;

}

.top-btn:hover{

background:#ff6a00;

transform:translateY(-5px);

}
/*==========================
MOBILE RESPONSIVE
==========================*/

@media (max-width:768px){

nav{

padding:15px 20px;

flex-direction:column;

}

.logo{

font-size:24px;

margin-bottom:15px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

}

nav ul li{

margin:10px;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:18px;

}

.hero button{

padding:12px 25px;

font-size:16px;

}

.places-container,
.gallery-container,
.location-container,
.package-container,
.booking-container,
.footer-container{

grid-template-columns:1fr;

}

.place-card,
.gallery-card,
.location-card,
.package-card{

width:100%;

}

.footer{

text-align:center;

}

.footer-links ul{

padding:0;

}

}
/*==========================
HAMBURGER MENU
==========================*/

.menu-toggle{

display:none;

font-size:32px;

color:white;

cursor:pointer;

}

@media(max-width:768px){

.menu-toggle{

display:block;

}

nav ul{

display:none;

flex-direction:column;

width:100%;

text-align:center;

margin-top:20px;

}

nav ul.active{

display:flex;

}

}
/*==========================
SCROLL ANIMATION
==========================*/

.animate{

opacity:0;

transform:translateY(60px);

transition:all .8s ease;

}

.animate.show{

opacity:1;

transform:translateY(0);

}
/*==========================
REVIEWS
==========================*/

.reviews{

padding:90px 8%;

background:#fff;

}

.reviews h2{

text-align:center;

font-size:42px;

margin-bottom:50px;

color:#222;

}

.review-container{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.review-card{

background:#f8f8f8;

padding:30px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.12);

transition:.3s;

}

.review-card:hover{

transform:translateY(-8px);

}

.stars{

font-size:28px;

color:#FFD700;

margin-bottom:20px;

}

.review-card p{

line-height:1.8;

color:#555;

}

.review-card h4{

margin-top:20px;

color:#ff9800;

}

.review-btn{

text-align:center;

margin-top:45px;

}

.review-btn a{

background:#ff9800;

color:white;

padding:15px 30px;

text-decoration:none;

border-radius:30px;

font-weight:bold;

}

.review-btn a:hover{

background:#ff6a00;

}
/*==========================
PRIVACY POLICY
==========================*/

.policy-page{

max-width:900px;

margin:70px auto;

padding:40px;

background:white;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.policy-page h1{

text-align:center;

margin-bottom:30px;

color:#ff9800;

}

.policy-page h2{

margin-top:30px;

color:#222;

}

.policy-page p{

line-height:1.9;

margin-top:10px;

color:#555;

}
/*==========================
HOTEL SECTION
==========================*/
.hotel{
padding:80px 8%;
background:#f8f8f8;
}

.hotel h2{
text-align:center;
font-size:42px;
color:#ff9800;
margin-bottom:10px;
}

.hotel-subtitle{
text-align:center;
font-size:18px;
color:#666;
margin-bottom:40px;
}

.hotel-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.hotel-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.12);
transition:.3s;
text-align:center;
}

.hotel-card:hover{
transform:translateY(-8px);
}

.hotel-card img{

width:100%;

height:220px;

object-fit:cover;

transition:0.4s;

cursor:pointer;

}

.hotel-card{

overflow:hidden;

}

.hotel-card:hover img{

transform:scale(1.08);

}

.hotel-card:hover{

box-shadow:0 15px 35px rgba(0,0,0,0.25);

}

.hotel-card h3{
margin:15px 0 8px;
color:#222;
}

.hotel-card p{
padding-bottom:20px;
color:#666;
}
.hotel-features{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

margin:25px 0 40px;

}

.hotel-features span{

background:#ff9800;

color:white;

padding:10px 18px;

border-radius:30px;

font-size:16px;

font-weight:bold;

}
/* Lightbox */

.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
z-index:9999;
}

.lightbox img{
max-width:90%;
max-height:85%;
border-radius:10px;
}

.close-lightbox{
position:absolute;
top:20px;
right:35px;
font-size:45px;
color:white;
cursor:pointer;
font-weight:bold;
}
/* ==========================
   RAFTING SECTION
========================== */

.rafting{
    padding:80px 8%;
    background:#ffffff;
}

.rafting h2{
    text-align:center;
    font-size:42px;
    color:#ff9800;
    margin-bottom:10px;
}

.rafting-subtitle{
    text-align:center;
    font-size:18px;
    color:#666;
    margin-bottom:40px;
}

.rafting-box{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.rafting-box h3{
    color:#ff9800;
    margin-top:20px;
    margin-bottom:8px;
}

.rafting-box p{
    color:#444;
    line-height:1.8;
}

.rafting-box ul{
    padding-left:22px;
    margin-top:10px;
}

.rafting-box li{
    margin-bottom:8px;
    color:#444;
}
/* ==========================
   RAFTING CARDS
========================== */

.rafting-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.rafting-card{
    background:#ffffff;
    border-radius:15px;
    padding:25px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
    transition:0.3s;
    border-top:5px solid #ff9800;
}

.rafting-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.20);
}

.rafting-card h3{
    color:#ff9800;
    margin-bottom:15px;
    font-size:22px;
}

.rafting-card p{
    color:#444;
    line-height:1.7;
}

@media(max-width:992px){

.rafting-container{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.rafting-container{
grid-template-columns:1fr;
}

}
/* ==========================
   FLOATING SOCIAL MEDIA
========================== */

.social-floating{
    position:fixed;
    left:20px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.social-floating a{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:26px;
    border-radius:50%;
    box-shadow:0 5px 15px rgba(0,0,0,.30);
    transition:.3s;
}

.social-floating a:hover{
    transform:scale(1.15);
}

.youtube{
    background:#FF0000;
}

.instagram{
    background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.facebook{
    background:#1877F2;
}
/* ==========================
   ABOUT PAGE
========================== */

.about-page{
    padding:80px 8%;
    background:#f5f5f5;
    min-height:100vh;
}

.about-container{
    max-width:1100px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.about-container h1{
    text-align:center;
    color:#ff9800;
    font-size:42px;
    margin-bottom:20px;
}

.about-container hr{
    border:none;
    height:3px;
    background:#ff9800;
    width:120px;
    margin:0 auto 30px;
}

.about-content{
    font-size:18px;
    line-height:2;
    color:#333;
    text-align:justify;
    white-space:pre-wrap;
}
.rating{
    margin-top:12px;
    color:#f4b400;
    font-size:20px;
    font-weight:bold;
}