body{
margin:0;
font-family:Arial;
background:#f4f4f4;
}

/* NAVBAR */
/* NAVBAR CENTERED */
.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0b5394;
  color: white;
  padding: 15px;
}

/* TITLE */
.logo {
  margin: 0;
  letter-spacing: 1px;
  font-size: 28px;
  text-align: center;
}

/* NAV LINKS */
.nav-links {
  margin-top: 10px;
}
.nav-links a:hover {
  text-decoration: underline;
}
.nav-links a {
  color: white;
  margin: 0 15px;
  padding: 5px 10px;   /* 👈 ADD THIS LINE */
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}


/* SLIDER */
.slider{
width:100%;
height:400px;
overflow:hidden;
position:relative;
}

.slides{
display:flex;
width:200%;  /* because images duplicated */
animation:scroll 15s linear infinite;
}

.slides img{
width:100%;
height:400px;
object-fit:cover;
}

/* SMOOTH INFINITE SCROLL */
@keyframes scroll{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}
/* PACKAGES */
.packages{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
padding:20px;
}

.card{
background:white;
width:250px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
text-align:center;
}

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

button{
background:#0b5394;
color:white;
padding:10px;
border:none;
margin:10px;
cursor:pointer;
}

/* FORM */
.form{
width:300px;
margin:30px auto;
display:flex;
flex-direction:column;
gap:10px;
}

.section-title{
text-align:center;
margin:20px;
}

/* BACKGROUND IMAGE (CHANGE PATH YOURSELF) */
.bg-booking{
background:url('/static/images/bg.jpg') no-repeat center center/cover;
height:100vh;
}

/* GLASS EFFECT FORM */
.glass{
background:rgba(255,255,255,0.2);
backdrop-filter:blur(10px);
padding:20px;
border-radius:10px;
}

/* REVIEWS */
.reviews{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}



/* SUCCESS PAGE */
.success-box{
width:80%;
max-width:400px;
margin:100px auto;
background:white;
padding:30px;
text-align:center;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* ABOUT SECTION */
.about{
text-align:center;
padding:40px;
background:white;
margin:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* GALLERY */
.gallery{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
padding:20px;
}

.gallery img{
width:250px;
height:160px;
object-fit:cover;
border-radius:10px;
transition:0.3s;
}

.gallery img:hover{
transform:scale(1.05);
}

.detail-box{
width:80%;
margin:30px auto;
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.detail-box img{
width:100%;
height:300px;
object-fit:cover;
border-radius:10px;
}
/* WHY CHOOSE US */
.why-us{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
padding:30px;
}

.why-card{
background:white;
width:180px;
padding:20px;
text-align:center;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
transition:0.3s;
}

.why-card:hover{
transform:translateY(-8px);
}

.why-card h3{
color:#0b5394;
}

.icon{
width:60px;
height:60px;
background:#0b5394;
color:white;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:25px;
margin:0 auto 10px;
}

.footer{
text-align:center;
padding:20px;
background:#0b5394;
color:white;
margin-top:30px;
}
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 600px;
  margin: 10px auto;
}

.service-item {
  background: #f9f9f9;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.service-item:hover {
  background: #e6f0ff;
  transform: translateY(-3px);
}

.services-note {
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .services {
    grid-template-columns: 1fr;
  }
}