/* =========================

style.css - Part 1

========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:'Poppins',sans-serif;
}

body{
background:#f8f9fc;
color:#222;
line-height:1.6;
overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:#0d6efd;
border-radius:10px;
}

::-webkit-scrollbar-track{
background:#f1f1f1;
}

/* Common */

.section-title{
font-size:38px;
font-weight:700;
text-align:center;
margin-bottom:50px;
color:#0d3b66;
position:relative;
}

.section-title::after{
content:'';
width:80px;
height:4px;
background:#ff9800;
display:block;
margin:10px auto;
border-radius:20px;
}

/* Navbar */

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:100px;
height:100px;
object-fit:contain;
}

.logo h2{
font-size:25px;
color:#0d3b66;
}

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links a{
text-decoration:none;
font-size:16px;
font-weight:500;
color:#333;
transition:.3s;
}

.nav-links a:hover{
color:#ff9800;
}

.book-btn{
background:#ff9800;
padding:12px 28px;
border-radius:30px;
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.book-btn:hover{
background:#0d6efd;
}

/* Hero */

.hero{
    height:100vh;
    background:url("kkkk.jpg") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    text-align:center;
    transition:background-image 1s ease-in-out;
}
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
z-index:2;
color:white;
max-width:900px;
padding:20px;
}

.hero-content h1{
font-size:60px;
margin-bottom:20px;
font-weight:700;
}

.hero-content p{
font-size:22px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn1,
.btn2{
padding:15px 35px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn1{
background:#ff9800;
color:white;
}

.btn2{
background:white;
color:#0d3b66;
}

.btn1:hover{
background:#0d6efd;
}

.btn2:hover{
background:#ff9800;
color:white;
}

/* Why Us */

.why-us{
padding:100px 8%;
}

.why-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;
}

.box{
background:white;
padding:35px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
}

.box:hover{
transform:translateY(-8px);
}

.box i{
font-size:45px;
color:#ff9800;
margin-bottom:20px;
}

.box h3{
margin-bottom:15px;
color:#0d3b66;
}

/* Services */

#services{
padding:100px 8%;
background:#eef5ff;
}

.services-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service-card{
background:white;
padding:35px;
text-align:center;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.service-card:hover{
transform:translateY(-8px);
}

.service-card i{
font-size:45px;
color:#ff9800;
margin-bottom:18px;
}

.service-card h3{
margin-bottom:15px;
color:#0d3b66;
}

/* Packages */

#packages{
padding:100px 8%;
}

.package-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
}

.package-card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,.08);
transition:.3s;
}

.package-card:hover{
transform:translateY(-10px);
}

.package-image img{
width:100%;
height:240px;
object-fit:cover;
}

.package-content{
padding:25px;
}

.package-content h3{
color:#0d3b66;
margin-bottom:12px;
}

.package-content ul{
padding-left:18px;
margin:15px 0;
}

.package-btn{
display:inline-block;
margin-top:10px;
padding:12px 28px;
background:#ff9800;
color:white;
text-decoration:none;
border-radius:30px;
transition:.3s;
}

.package-btn:hover{
background:#0d6efd;
}
/* =========================
style.css - Part 2
========================= */

/* Gallery */

#gallery{
padding:100px 8%;
background:#f8f9fc;
}

.gallery-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
}

.gallery-box{
overflow:hidden;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.10);
cursor:pointer;
background:#fff;
}

.gallery-box img{
width:100%;
height:260px;
object-fit:cover;
transition:.5s;
}

.gallery-box:hover img{
transform:scale(1.08);
}

/* Reviews */

#reviews{
padding:100px 8%;
background:#eef5ff;
}

.review-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.review-card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
text-align:center;
transition:.3s;
font-size:18px;
}

.review-card:hover{
transform:translateY(-8px);
}

.review-card h4{
margin-top:15px;
color:#0d3b66;
}

/* Booking Form */

#booking{
padding:100px 8%;
}

form{
max-width:900px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

form input,
form select,
form textarea{
padding:15px;
border:1px solid #ddd;
border-radius:12px;
font-size:15px;
outline:none;
}

form input:focus,
form select:focus,
form textarea:focus{
border-color:#0d6efd;
}

form button{
grid-column:1/-1;
padding:16px;
border:none;
background:#ff9800;
color:#fff;
font-size:18px;
font-weight:600;
border-radius:40px;
cursor:pointer;
transition:.3s;
}

form button:hover{
background:#0d6efd;
}

.thank-you-message{
max-width:900px;
margin:40px auto 0;
padding:30px;
background:#eef8ff;
border-left:6px solid #0d6efd;
border-radius:15px;
}

.thank-you-message h3,
.thank-you-message h4{
color:#0d3b66;
margin-bottom:15px;
}

/* Contact */

#contact{
padding:100px 8%;
background:#0d3b66;
color:#fff;
text-align:center;
}

#contact p{
margin:15px 0;
font-size:18px;
}

#contact i{
color:#ff9800;
margin-right:10px;
}

.map{
margin-top:40px;
border-radius:20px;
overflow:hidden;
}

/* Footer */

footer{
background:#08213d;
color:#fff;
text-align:center;
padding:25px;
}

.social-links{
margin-top:15px;
}

.social-links a{
display:inline-block;
margin:0 10px;
text-decoration:none;
color:#fff;
transition:.3s;
}

.social-links a:hover{
color:#ff9800;
}

/* Floating Buttons */

.whatsapp-float,
.call-float{
position:fixed;
right:20px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:28px;
text-decoration:none;
z-index:999;
box-shadow:0 10px 25px rgba(0,0,0,.25);
transition:.3s;
}

.whatsapp-float{
bottom:95px;
background:#25D366;
}

.call-float{
bottom:20px;
background:#0d6efd;
}

.whatsapp-float:hover,
.call-float:hover{
transform:scale(1.12);
}

/* Animation */

.fade-up{
opacity:0;
transform:translateY(40px);
transition:1s ease;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}

/* Responsive */

@media(max-width:992px){

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:18px;
}

.navbar{
flex-direction:column;
gap:15px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

}

@media(max-width:768px){

.hero{
height:85vh;
}

.hero-content h1{
font-size:32px;
}

.hero-content p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
}

.btn1,
.btn2{
width:100%;
}

.section-title{
font-size:28px;
}

.logo h2{
font-size:20px;
}

.whatsapp-float,
.call-float{
width:55px;
height:55px;
font-size:24px;
}

}

@media(max-width:480px){

.navbar{
padding:15px;
}

.hero-content{
padding:15px;
}

.package-image img{
height:200px;
}

.gallery-box img{
height:200px;
}

form{
grid-template-columns:1fr;
}

}