*{margin:0;padding:0;box-sizing:border-box;}

body{
font-family:'Poppins', sans-serif;
}

a{
    text-decoration: none;
    color: #0f172a ;
}
a:hover{
     color: brown ;
}

h1,h2,h3,h4,h5{
font-family:'Montserrat', sans-serif;
}

body{background:#f8fafc;color:#0f172a;}
.container{width:90%;max-width:1200px;margin:auto;}

/* HEADER */



.menu-item{
position:relative;
display:inline-block;
}

.submenu{
display:none;
position:absolute;
top:100%;
left:0;
background:#fff;
min-width:200px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
padding:10px 0;
}

.submenu a{
display:block;
padding:8px 15px;
color:#0b1a2f !important;
text-decoration:none;
margin: auto !important;
}

.submenu a:hover{
    color: brown !important;
}
.menu-item:hover .submenu{
display:block;
}
.nav-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}
.nav-wrap.scrolled .logo img {
  height: 60px;
   transition: all 0.4s ease;
}
.logo{
    font-weight:700;
    color:#0ea5e9;
    font-size:22px;
}
.nav-menu a{
    margin-left:25px;
    text-decoration:none;
    color:#ffffff;
}

.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}
.menu-toggle span{width:25px;
    height:3px;
    background:#111;
    margin:4px 0;
}
/* Font Awesome Icon */
.menu-icon{
font-size:13px;
transition:0.3s ease;
}

/* Hover Rotate */
.menu-item:hover .menu-icon{
transform:rotate(180deg);
}

/* Desktop Hover */
@media(min-width:992px){
.menu-item:hover .submenu{
display:block;
}
.menu-item:hover .menu-icon{
transform:rotate(180deg);
}
}
/* Mobile Active Class */
.menu-item.active .submenu{
display:block;
}

.menu-item.active .menu-icon{
transform:rotate(180deg);
}

/*changes*/
.header{
background:#0b1a2f;
position:sticky;
top:0;
z-index:1000;
padding:15px 0;
}

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
position:relative;
}

/* LOGO BIG + OUTSIDE NAVBAR */
.logo{
position:relative;
z-index:5;
}

.logo img{
height:120px;   /* BIG SIZE */
width:auto;
position:absolute;
top:-30px;      /* Move Outside Navbar */
left:0;
transition: all 0.4s ease;
}

/* MENU COLOR */
.nav-menu a{
color:white;
}
@media(max-width:768px){

.logo img{
height:80px;
top:-25px;
}

.header{
padding:10px 0;
}

}

/*changes*/




/* HERO */
.hero{
    height:90vh;
    position:relative;
    overflow:hidden;
    
}
.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1s;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    
}
.slide.active{
    opacity:1;
    
}
.hero-content{
    background:rgba(0,0,0,.4);
    padding:40px;
    border-radius:20px;
    color:white;
    
}

.btn{
    background:#0ea5e9;
    color:white;
    padding:12px 25px;
    border-radius:40px;
    text-decoration:none;
    display:inline-block;
    margin-top:15px;
    
}
.btn.white{
    background:white;
    color:#0ea5e9;
    
}

/* STATS */
.stats{
    background:#0ea5e9;
    color:white;
    padding:20px 0;
    
}
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    
}

/* SECTIONS */
.section{
    padding:80px 0;
    
}
.light{
    background:#eef6fb;
    
}
.section-title{
    text-align:center;
    margin-bottom:40px;
    
}
.section-title.white{
    color:white;
    
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    
}
.about-grid img{
    width:100%;
    border-radius:20px;
    
}

.check-list li{margin:8px 0;}

/* TOUR */
.tour-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    
}

.tour-grid p{
    text-align: center;
}

.tour-card{
   display:block;
text-decoration:none;
color:#000;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
background:#fff;
    
}
.tour-card img{
    width:100%;
height:220px;
object-fit:cover;
    
}
.tour-info{
    padding:15px;
    
}

.tour-info h3{
   margin:0 0 5px;
font-size:18px;
}

.tour-info span{
font-size:14px;
color:#666;
}

/* DEST */
.dest-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    
}
.dest{
    position:relative;
    
}
.dest img{
    width:100%;
    border-radius:15px;
    
}
.overlay{
    position:absolute;
    bottom:15px;
    left:15px;
    color:white;
    font-weight:600;
    
}

/* TEST */
.testimonial{
    background:#0f172a;
    color:white;
    padding:50px 0;
    text-align:center;
    
}
.test{
    display:none;
    
}
.test.active{
    display:block;
    
}

/* CTA */
.cta{
    background:#0ea5e9;
    color:white;
    text-align:center;
    padding:60px 20px;
    
}

/* GALLERY */
.gallery-strip{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    
}
.gallery-strip img{
    width:100%;
    
}



/* RESPONSIVE */
@media(max-width:900px){
.about-grid{grid-template-columns:1fr;}
.tour-grid{grid-template-columns:repeat(2,1fr);}
.dest-grid{grid-template-columns:repeat(2,1fr);}

.stats-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:600px){
.nav-menu{display:none;flex-direction:column;background:white;position:absolute;top:70px;right:20px;padding:20px;}
.nav-menu.show{display:flex;}
.menu-toggle{display:flex;}
.tour-grid,.dest-grid,.stats-grid{grid-template-columns:1fr;}
.gallery-strip{grid-template-columns:repeat(2,1fr);}
}



/* NAV */
.nav-menu{
display:flex;
align-items:center;
}

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
z-index:1001;
}

.menu-toggle span{
width:25px;
height:3px;
background:#ffff;
margin:4px 0;
transition:.4s;
}

/* MOBILE NAV OVERLAY */
@media(max-width:768px){

.nav-menu{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100vh;
background:white;
flex-direction:column;
padding-top:100px;
transition:.4s;
box-shadow:-5px 0 20px rgba(0,0,0,.1);
}

.nav-menu a{
margin:15px 0;
font-size:18px;
color: #111;
}

.nav-menu.show{
right:0;
}

.menu-toggle{
display:flex;
}

.menu-toggle.active span{
    background: #111;
    
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}
.menu-toggle.active span:nth-child(2){
opacity:0;
}
.menu-toggle.active span:nth-child(3){
transform:rotate(-45deg) translate(5px,-5px);
}

}


/* CATEGORY */
.category-slider{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
padding-bottom:10px;
}

.category-slider::-webkit-scrollbar{
height:6px;
}

.category-slider::-webkit-scrollbar-thumb{
background:#0ea5e9;
border-radius:10px;
}

.cat-card{
min-width:260px;
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.3s;
cursor:pointer;
}

.cat-card:hover{
transform:translateY(-8px);
}

.cat-card img{
width:100%;
height:180px;
object-fit:cover;
}

.cat-card h4{
padding:15px;
text-align:center;
}
/* CATEGORY CARD */
.category-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
}

.category-card img{
width:100%;
height:200px;
object-fit:cover;
}

.category-card h3{
padding:15px;
}

/* WHATSAPP FLOAT */
.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:999;
transition:0.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* SMALL SWIPER ARROWS */
.swiper-button-next,
.swiper-button-prev{
width:35px;
height:35px;
background:rgba(0,0,0,0.6);

}

/* Arrow Icon Size */
.swiper-button-next:after,
.swiper-button-prev:after{
font-size:14px !important;
font-weight:bold;
color:white;
}


/*tour-details-page*/
/* ===== BANNER ===== */

.tour-details-banner{
padding:80px 0 70px;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('https://picsum.photos/1600/600?maldives');
background-size:cover;
background-position:center;
color:#fff;
text-align:center;
}

.tour-details-banner h1{
font-size:40px;
margin-bottom:10px;
}

.tour-left{
min-width:0;
}
.tour-right{
display:flex;
flex-direction:column;
gap:30px;
width:100%;
position:sticky;
overflow:visible;
}


/* ===== MAIN GRID ===== */

.tour-details-section{
padding:80px 0;
}

.tour-details-grid{
display:grid;
grid-template-columns:minmax(0, 2fr) minmax(320px, 1fr);
gap:50px;
align-items:start;
}



/* ===== LEFT SIDE ===== */

.main-tour-img{
width:100%;
min-height:300px;
object-fit:cover;
border-radius:18px;
}
.tour-left h2{
margin:25px 0 15px;
}

.tour-left ul{
padding-left:20px;
}

.tour-left li{
margin-bottom:8px;
}


/* ===== ITINERARY ===== */

.itinerary-box{
background:#f7f9fc;
padding:18px;
border-radius:12px;
margin-bottom:15px;
}


/* ===== RIGHT SIDE FORM ===== */

.inquiry-box{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
position:sticky;

align-self:flex-start;
z-index:2;
}



.inquiry-box h3{
margin-bottom:20px;
}

.inquiry-box input,
.inquiry-box textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border-radius:8px;
border:1px solid #e5e7eb;
font-family:'Poppins',sans-serif;
}

.inquiry-box textarea{
height:120px;
resize:none;
}


/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.tour-details-grid{
grid-template-columns:1fr;
}

.inquiry-box{
position:relative;
top:0;
}

}
.modern-inquiry{
background:rgba(255,255,255,0.85);
backdrop-filter:blur(12px);
padding:35px;
border-radius:22px;
box-shadow:0 20px 60px rgba(0,0,0,0.12);
border:1px solid rgba(255,255,255,0.3);
}

.modern-inquiry h3{
font-size:24px;
margin-bottom:5px;
}

.inq-sub{
font-size:14px;
color:#666;
margin-bottom:25px;
}
.form-group{
position:relative;
margin-bottom:22px;
}

.form-group input,
.form-group textarea{
width:100%;
padding:16px 14px;
border-radius:12px;
border:1px solid #e5e7eb;
font-size:14px;
background:#fff;
outline:none;
transition:.3s;
}

.form-group textarea{
height:110px;
resize:none;
}

/* LABEL */

.form-group label{
position:absolute;
left:14px;
top:15px;
font-size:14px;
color:#777;
pointer-events:none;
transition:.25s ease;
background:#fff;
padding:0 6px;
}

/* FLOAT EFFECT */

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label,
.form-group label.active{
top:-8px;
font-size:12px;
color:#0a7cff;
}

/* FOCUS BORDER */

.form-group input:focus,
.form-group textarea:focus{
border-color:#0a7cff;
box-shadow:0 0 0 3px rgba(10,124,255,.1);
}
.inq-btn{
width:100%;
padding:16px;
border:none;
border-radius:14px;
background:linear-gradient(45deg,#0a7cff,#00c6ff);
color:#fff;
font-weight:600;
font-size:16px;
cursor:pointer;
transition:.35s;
    text-align: center;
    text-decoration: none;
}

.inq-btn:hover{
transform:translateY(-2px);
box-shadow:0 15px 35px rgba(10,124,255,.35);
}

.tour-gallery-slider{
margin-bottom:25px;
}

.gallerySwiper .swiper-slide img{
width:100%;
height:120px;
object-fit:cover;
border-radius:12px;
cursor:pointer;
transition:.3s;
}

.gallerySwiper .swiper-slide img:hover{
transform:scale(1.05);
}



.related-tour-box{
    width:100%;
    position:relative;
    z-index:1;
    margin-top:0;
   
}

.related-tour-box h3{
margin-bottom:15px;
font-size:18px;
}

.related-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.related-card img{
width:100%;
height:140px;
object-fit:cover;
}

.related-card h4{
font-size:15px;
padding:10px 12px 0;
}

.related-card span{
display:block;
padding:5px 12px 12px;
color:#0a7cff;
font-weight:600;
}
.related-tour-box .swiper{
width:100%;
overflow:hidden;
}
.relatedTourSwiper{
       width:100%;
    overflow:hidden;
}

.relatedTourSwiper .swiper-slide{
 height:auto;
}
.tour-content,
.tour-container{
    overflow:visible;
}


.related-card{
width:100%;
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.related-card img{
width:100%;
height:150px;
object-fit:cover;
display:block;
}
.inquiry-box.modern-inquiry{
    width:100%;
    position:relative;
    z-index:2;
    padding:30px;
    margin-bottom:0;
}



/*tour page*/
/* SEARCH */
.tour-search{
background:#fff;
padding:25px 0;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

/* SEARCH BAR CENTER + BIG */
.tour-top-bar{
display:flex;
justify-content:center;
align-items:center;
position:relative;
}

.tour-top-bar input{
width:500px;          /* increase size */
max-width:90%;        /* mobile safe */
padding:18px 22px;    /* bigger height */
border-radius:16px;
border:1px solid #e5e7eb;
font-size:16px;
box-shadow:0 8px 25px rgba(0,0,0,.05);
transition:.3s;
}

/* Focus Effect */
.tour-top-bar input:focus{
outline:none;
border-color:#0a7cff;
box-shadow:0 10px 30px rgba(10,124,255,.15);
}

/* GRID */
.tour-page{
padding:60px 0;
}

.tour-list{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* CARD */
.tour-card{
position:relative;
background:#fff;
border-radius:20px;
overflow:hidden;
text-decoration:none;
color:#000;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.3s;
}

.tour-card:hover{
transform:translateY(-8px);
}

/* IMAGE */
.tour-img{
position:relative;
overflow:hidden;
}

.tour-img img{
width:100%;
height:220px;
object-fit:cover;
transition:.5s;
}

.tour-card:hover img{
transform:scale(1.1);
    transition: 0.3s;
}

/* OVERLAY */
.tour-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(transparent, rgba(0,0,0,.7));
display:flex;
align-items:flex-end;
padding:20px;
opacity:0;
transition:.4s;
}

.tour-card:hover .tour-overlay{
opacity:1;
}

.tour-overlay span{
color:#fff;
font-weight:600;
}

/* CONTENT */
.tour-content{
padding:18px;
}

.price{
color:#0a7cff;
font-weight:600;
}

/* WHATSAPP BUTTON */
.tour-wa{
position:absolute;
top:15px;
right:15px;
background:#25D366;
color:#fff;
padding:8px 14px;
border-radius:30px;
font-size:13px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,.2);
}

/* LOAD MORE */
.tour-actions{
text-align:center;
margin-top:40px;
}

#loadMoreBtn{
padding:15px 35px;
border:none;
background:#0a7cff;
color:#fff;
border-radius:14px;
font-size:16px;
cursor:pointer;
}

/* MOBILE */
@media(max-width:992px){
.tour-list{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.tour-list{
grid-template-columns:1fr;
}
}
#noResultText{
    display:none;
    text-align:center;
    font-size:18px;
    margin-top:40px;
    color:#666;
}


/*destination page*/

/* BANNER */
.destination-banner{
height:320px;
background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url('https://picsum.photos/1600/800?beach');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}

.destination-banner h1{
font-size:42px;
margin-bottom:10px;
}

.destination-banner p{
font-size:18px;
opacity:.9;
}

/* PAGE CONTAINER */
.destination-container{
width:90%;
max-width:1200px;
margin:60px auto;
}

/* ABOUT SECTION */
.destination-about{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:40px;
align-items:center;
margin-bottom:60px;
}

.destination-about img{
width:100%;
border-radius:20px;
}

.destination-about h2{
margin-bottom:15px;
}

/* TOUR PACKAGES */
.package-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.package-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.3s;
}

.package-card:hover{
transform:translateY(-8px);
}

.package-card img{
width:100%;
height:200px;
object-fit:cover;
}

.package-content{
padding:18px;
}

.price{
color:#0a7cff;
font-weight:600;
margin-top:8px;
display:block;
}

/* WHY VISIT */
.why-section{
margin-top:70px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:30px;
}

.why-box{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* RESPONSIVE */
@media(max-width:992px){
.destination-about{
grid-template-columns:1fr;
}

.package-grid{
grid-template-columns:repeat(2,1fr);
}

.why-grid{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:600px){
.package-grid{
grid-template-columns:1fr;
}

.why-grid{
grid-template-columns:1fr;
}

.destination-banner h1{
font-size:30px;
}
}


/*blog page*/
/* PAGE LAYOUT */
.blog-container{
width:90%;
max-width:1300px;
margin:60px auto;
display:grid;
grid-template-columns:2.3fr 1fr;
gap:40px;
}

/* BLOG GRID */
.blog-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.blog-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;
display:block;
text-decoration:none;
color:#333;
}

.blog-card:hover{
transform:translateY(-8px);
}

.blog-card img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-content{
padding:20px;
}

.blog-content h4{
margin:0 0 10px;
}

.blog-meta{
font-size:13px;
color:#777;
margin-bottom:10px;
}

/* LOAD MORE */
.blog-actions{
text-align:center;
margin-top:40px;
}

#blogloadMoreBtn{
padding:15px 38px;
border:none;
border-radius:40px;
background:linear-gradient(45deg,#0a7cff,#00c6ff);
color:#fff;
font-size:16px;
cursor:pointer;
}

/* SIDEBAR */
.blog-sidebar{
position:sticky;
top:40px;
height:fit-content;
}

.sidebar-box{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
margin-bottom:25px;
}

.sidebar-box h3{
margin-top:0;
margin-bottom:15px;
}

/* SEARCH */
.sidebar-search input{
width:100%;
padding:14px;
border-radius:30px;
border:1px solid #eee;
outline:none;
}

/* CATEGORY */
.category-list{
list-style:none;
padding:0;
margin:0;
}

.category-list li{
padding:10px 0;
border-bottom:1px solid #f1f1f1;
cursor:pointer;
}

/* FEATURED POST */
.featured-post{
display:flex;
gap:12px;
margin-bottom:15px;
}

.featured-post img{
width:70px;
height:60px;
object-fit:cover;
border-radius:10px;
}

/* CTA */
.sidebar-cta{
background:linear-gradient(45deg,#0a7cff,#00c6ff);
color:#fff;
text-align:center;
}

.sidebar-cta button{
margin-top:15px;
padding:12px 25px;
border:none;
border-radius:30px;
background:#fff;
color:#0a7cff;
font-weight:600;
cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:992px){
.blog-container{
grid-template-columns:1fr;
}

.blog-grid{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:600px){
.blog-grid{
grid-template-columns:1fr;
}
}

/*blog details*/

/* MAIN CONTAINER */
.blog-container{
width:90%;
max-width:1200px;
margin:60px auto;
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}

/* BLOG CONTENT */
.blog-content{
background:#fff;
padding:40px;
border-radius:20px;

}

.blog-meta{
font-size:14px;
color:#777;
margin-bottom:20px;
}

.blog-content img{
width:100%;
border-radius:15px;
margin:25px 0;
}

.blog-content h2{
margin-top:25px;
}

.blog-content p{
line-height:1.8;
margin:15px 0;
}

/* SIDEBAR */
.blog-sidebar{
display:flex;
flex-direction:column;
gap:25px;
}

.sidebar-box{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.sidebar-box h3{
margin-bottom:15px;
}

/* RECENT POSTS */
.recent-post{
display:flex;
gap:12px;
margin-bottom:15px;
}

.recent-post img{
width:70px;
height:70px;
object-fit:cover;
border-radius:10px;
}

.recent-post span{
font-size:14px;
color:#666;
}

/* CATEGORY LIST */
.category-list{
list-style:none;
padding:0;
margin:0;
}

.category-list li{
padding:8px 0;
border-bottom:1px solid #eee;
font-size:15px;
}


/* RESPONSIVE */
@media(max-width:992px){
.blog-container{
grid-template-columns:1fr;
}
}

@media(max-width:600px){
.blog-banner h1{
font-size:28px;
}

.blog-content{
padding:25px;
}
}

/*contact page*/
/* MAIN */
.contact-container{
width:90%;
max-width:1200px;
margin:60px auto;
}

/* CONTACT GRID */
.contact-grid{
display:grid;
grid-template-columns:1.3fr 1fr;
gap:40px;
}

/* FORM */
.contact-form{
background:#fff;
padding:20px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.contact-form h2{
margin-top:0;
margin-bottom:25px;
}

.form-group{
margin-bottom:18px;
position:relative;
}

.form-group i{
position:absolute;
left:15px;
top:50%;
transform:translateY(-50%);
color:#0a7cff;
}

.form-group input,
.form-group textarea{
width:100%;
padding:14px 14px 14px 45px;
border-radius:12px;
border:1px solid #eee;
outline:none;
font-family:Poppins;
}

.form-group textarea{
height:140px;
resize:none;
padding-top:14px;
}

.submit-btn{
width:100%;
padding:16px;
border:none;
border-radius:40px;
background:linear-gradient(45deg,#0a7cff,#00c6ff);
color:#fff;
font-size:16px;
cursor:pointer;
}

/* INFO */
.contact-info{
display:flex;
flex-direction:column;
gap:20px;
}

.info-card{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
display:flex;
gap:15px;
align-items:flex-start;
}

.info-icon{
font-size:22px;
color:#0a7cff;
}

/* MAP */
.map-section{
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

/* RESPONSIVE */
@media(max-width:992px){
.contact-grid{
grid-template-columns:1fr;
}
}

@media(max-width:600px){
.contact-banner h1{
font-size:30px;
}

.contact-form{
padding:25px;
}
}


.whatsapp-popup{
    position:fixed;
    bottom:90px;
    right:20px;
    width:300px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
    display:none;
    z-index:999;
}

.popup-header{
    background:#25D366;
    color:#fff;
    padding:15px;
    border-radius:12px 12px 0 0;
    font-weight:bold;
}

.popup-body{
    padding:15px;
}

.popup-body a{
    display:block;
    background:#25D366;
    color:#fff;
    text-align:center;
    padding:10px;
    border-radius:8px;
    text-decoration:none;
    margin-top:10px;
}



/* ===== MAIN FOOTER ===== */
.agency-footer{
    background:#061a30;
    color:#fff;
    font-family:Poppins, sans-serif;
}

/* ===== TOP FOOTER ===== */
.agency-footer-top{
    max-width:1200px;
    margin:auto;
    padding:40px 20px 70px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;
}

/* BRAND */
.af-brand{
    display:flex;
    align-items:center;
    gap:15px;
    flex:1.5;
    min-width:260px;
}

.af-brand img{
    height:55px;
}

.af-brand p{
    font-size:14px;
    color:#c3d8f5;
    margin:0;
}

/* NAV */
.af-nav{
    display:flex;
    gap:20px;
    flex:1;
    flex-wrap:wrap;
}

.af-nav a{
    color:#dbe8ff;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.af-nav a:hover{
    color:#4db5ff;
}

/* CONTACT */
.af-contact{
    display:flex;
    flex-direction:column;
    gap:6px;
    font-size:14px;
    flex:1;
}

.af-contact i{
    color:#4db5ff;
    margin-right:8px;
}


/* ===== BOTTOM WRAPPER ===== */
.agency-footer-bottom-wrapper{
    position:relative;
}

/* FLOATING LOGO */
.footer-floating-logo{
    position:absolute;
    left:50%;
    top:-35px;
    transform:translateX(-50%);

   
    padding:8px;
 
}

.footer-floating-logo img{
    height:100px;
    width:auto;
    object-fit:contain;
}


/* ===== BOTTOM BAR ===== */
.agency-footer-bottom{
   
    padding:45px 20px 18px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;

    max-width:1200px;
    margin:auto;
}

/* COPYRIGHT */
.af-copy{
    font-size:13px;
    color:#9fc3ea;
}

/* DEV */
.af-dev{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
}

/* DEV LINK */
.dev-link{
    display:flex;
    align-items:center;
    gap:6px;
    color:#4db5ff;
    text-decoration:none;
}

.dev-link img{
    height:18px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

.agency-footer-top{
    text-align:center;
    padding-bottom:80px;
}

.af-brand{
    justify-content:center;
    flex-direction:column;
}

.af-nav{
    justify-content:center;
}

.af-contact{
    align-items:center;
}

.agency-footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
}

.footer-floating-logo{
    top:-60px;
}

}


/*category page*/
/* TOUR GRID */
.tour-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.tour-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.3s;
text-decoration:none;
color:#333;
}

.tour-card:hover{
transform:translateY(-8px);
}

.tour-card img{
width:100%;
height:220px;
object-fit:cover;
}

.tour-info{
padding:18px;
}

.tour-info h3{
margin:0 0 8px;
font-size:20px;
}

.tour-tag{
font-size:13px;
color:#0a7cff;
font-weight:600;
}

/* OTHER CATEGORY SLIDER */
.section-title{
font-size:26px;
}

.category-slider{
display:flex;
gap:20px;
overflow-x:auto;
padding-bottom:10px;
}

.category-item{
min-width:220px;
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.06);
text-align:center;
}

.category-item img{
width:100%;
height:140px;
object-fit:cover;
}

.category-item h4{
margin:12px 0 18px;
}

/* INFO STRIP */
.info-strip{
margin-top:70px;
background:#0a7cff;
color:#fff;
border-radius:18px;
padding:30px;
display:grid;
grid-template-columns:repeat(3,1fr);
text-align:center;
}

.info-strip i{
font-size:28px;
margin-bottom:10px;
}

/* CTA */
.cta-box-new{
margin-top:40px;
padding:35px 30px;
border-radius:24px;
text-align:center;
background:rgba(255,255,255,0.15);
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,0.2);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
position:relative;
overflow:hidden;
}

/* Gradient Glow Background */
.cta-box-new::before{
content:"";
position:absolute;
width:160px;
height:160px;
background:linear-gradient(45deg,#0a7cff,#00e0ff);
top:-40px;
right:-40px;
border-radius:50%;
opacity:0.5;
}

/* Icon */
.cta-icon{
font-size:32px;
margin-bottom:15px;
color:#0a7cff;
}

/* Text */
.cta-box-new h3{
font-size:22px;
margin-bottom:10px;
}

.cta-box-new p{
font-size:14px;
opacity:0.85;
margin-bottom:20px;
}

/* Button */
.cta-btn-new{
display:inline-flex;
align-items:center;
gap:8px;
padding:14px 28px;
border-radius:50px;
background:linear-gradient(45deg,#0a7cff,#00c6ff);
color:#fff;
font-weight:600;
text-decoration:none;
transition:0.3s;
}

/* Hover */
.cta-btn-new:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
/* RESPONSIVE */
@media(max-width:992px){
.tour-grid{
grid-template-columns:repeat(2,1fr);
}
.info-strip{
grid-template-columns:1fr;
gap:25px;
}
}

@media(max-width:600px){
.tour-grid{
grid-template-columns:1fr;
}
.category-banner h1{
font-size:28px;
}
}

/* single page**/

.gallery-section{
margin-top:50px;
}

.gallery-section h2{
margin-bottom:20px;
}


.gallery-flex{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.gallery-item{
width:23%;
cursor:pointer;
}

.gallery-item img{
width:100%;
height:200px;
object-fit:cover;
border-radius:15px;
}

/* LOAD MORE BUTTON */
.load-more{
margin:30px auto 0;
display:block;
padding:12px 30px;
border:none;
background:#0d6efd;
color:#fff;
border-radius:30px;
cursor:pointer;
}

/* ================= LIGHTBOX ================= */

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
display:none;
justify-content:center;
align-items:center;
z-index:999;
}

.lightbox img{
max-width:90%;
max-height:80%;
border-radius:15px;
}

.lightbox.close{
display:flex;
}

/* ================= TOUR CONTENT ================= */

.tour-content-single{
margin-top:60px;
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
margin-bottom: 50px;
}

.tour-content-single h2{
margin-bottom:15px;
}

.tour-content-single p{
line-height:1.8;
color:#555;
}


/* ================= TOUR DETAILS ================= */

.tour-details{
background:#fff;
padding:40px;
margin-top:-80px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.tour-header{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;
margin-bottom:25px;
}

.tour-title{
font-size:32px;
font-weight:600;
}

.tour-price{
font-size:24px;
font-weight:600;
color:#0d6efd;
}

/* INFO FLEX */
.tour-meta{
display:flex;
gap:25px;
flex-wrap:wrap;
margin-top:15px;
}

.tour-meta div{
background:#f1f4fa;
padding:10px 18px;
border-radius:30px;
font-size:14px;
}
.inquiry-btn-modern{
display:inline-block;
padding:16px 36px;
border-radius:50px;
font-weight:600;
font-size:16px;
text-decoration:none;
color:#fff;
background:linear-gradient(135deg,#ff7a18,#ff3d00);
box-shadow:0 10px 25px rgba(255,61,0,0.3);
transition:all .3s ease;
}

.inquiry-btn-modern:hover{
transform:translateY(-3px);
box-shadow:0 15px 30px rgba(255,61,0,0.4);
}

.blogcat-page{
padding:60px 0;
}

.blogcat-container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.blogcat-header{
margin-bottom:40px;
}

.blogcat-title{
font-size:32px;
font-weight:700;
}

.blogcat-desc{
color:#666;
margin-top:10px;
}

.blogcat-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.blogcat-card{
display:block;
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
text-decoration:none;
color:#111;
transition:0.3s;
}

.blogcat-card:hover{
transform:translateY(-5px);
}

.blogcat-card img{
width:100%;
height:220px;
object-fit:cover;
}

.blogcat-card-content{
padding:18px;
}

.blogcat-meta{
font-size:13px;
color:#888;
margin-bottom:8px;
}

.blogcat-card-title{
font-size:18px;
margin-bottom:8px;
}

.blogcat-card-desc{
font-size:14px;
color:#555;
}

.blogcat-pagination{
margin-top:40px;
}

/*galleryy*/

/* GALLERY GRID */
.gallery-container{
width:90%;
max-width:1300px;
margin:40px auto;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.gallery-itempage{
position:relative;
cursor:pointer;
overflow:hidden;
border-radius:14px;
}

.gallery-itempage img{
width:100%;
height:100%;
display:block;
transition:0.4s;
}

/* OVERLAY */
.gallery-overlay{
position:absolute;
left:0;
bottom:0;
width:100%;
padding:15px;
display:flex;
justify-content:space-between;
align-items:center;
background:linear-gradient(transparent, rgba(0,0,0,0.7));
color:#fff;
opacity:0;
transition:0.4s;
}

.gallery-itempage:hover .gallery-overlay{
opacity:1;
}


/* TITLE */
.gallery-title{
font-size:15px;
font-weight:600;
}

/* ICON BUTTON */
.gallery-view{
width:38px;
height:38px;
background:#fff;
color:#000;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:16px;
}

.gallery-itempage:hover img{
transform:scale(1.08);
}

/* LOAD MORE */
.loadmorepage-wrap{
text-align:center;
margin:40px 0 60px;
}

.loadpage-btn{
padding:14px 32px;
border:none;
background:#0a7cff;
color:#fff;
border-radius:40px;
font-weight:600;
cursor:pointer;
}

/* LIGHTBOX */
.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.95);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:10px;
}

.lightbox-close{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:#fff;
cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:992px){
.gallery-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:600px){
.gallery-grid{
grid-template-columns:repeat(2,1fr);
}
.gallery-title h1{
font-size:28px;
}
}


/*floating icon*/
.social-float{
position:fixed;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:12px;
z-index:9999;
}

.left-side{
left:0;
}

.right-side{
right:0;
}

/* ICON STYLE */
.social-float a{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:18px;
text-decoration:none;
transition:0.3s;
border-radius:0 6px 6px 0;
}

/* Right side border fix */
.right-side a{
border-radius:6px 0 0 6px;
}

/* Individual Colors */
.facebook{background:#1877F2;}
.instagram{background:#E4405F;}
.twitter{background:#000;}
.youtube{background:#FF0000;}

/* Hover Effect */
.social-float a:hover{
width:60px;
}

/* CTA */
.cta-box{
margin-top:40px;
background:linear-gradient(45deg,#0a7cff,#00c6ff);
color:#fff;
padding:40px;
border-radius:20px;
text-align:center;
}


.cta-box .btn{
margin-top:15px;
padding:12px 25px;
border:none;
border-radius:30px;
background:#fff;
color:#0a7cff;
font-weight:600;
cursor:pointer;
transition: 0.3s;
}


.cta-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Back To Top Button */
#backToTop{
position:fixed;
bottom:20px;
left:20px;
width:40px;
height:40px;
border:none;
border-radius:50%;
background:#0a7cff;
color:#fff;
font-size:14px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 4px 12px rgba(0,0,0,0.2);
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:9999;
}

#backToTop:hover{
background:#005edc;
}

#backToTop.show{
opacity:1;
visibility:visible;
}

/*about me*/
.about-hero{
padding:80px 10%;
background:#f4f7fb;
}

.about-container{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.about-image img{
width:100%;
max-width:450px;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}


.about-heading{
font-size:48px;
font-weight:700;
line-height:1.2;
margin:0 0 20px;
color:#111;
}

.about-heading span{
display:inline-block;
color:#0a7cff;
}

/* Responsive Fix */
@media(max-width:768px){
.about-heading{
font-size:32px;
}
}
.about-content{
flex:1;
}

.about-content h1{
font-size:42px;
margin-bottom:10px;
}

.about-content h1 span{
color:#0a7cff;
}

.about-tagline{
font-weight:600;
color:#666;
margin-bottom:20px;
}

.about-desc{
margin-bottom:25px;
line-height:1.6;
color:#555;
}

.about-contact p{
margin:8px 0;
font-size:15px;
}

.about-contact i{
color:#0a7cff;
margin-right:10px;
}

.about-social{
margin:20px 0;
}

.about-social a{
display:inline-flex;
width:40px;
height:40px;
background:#0a7cff;
color:#fff;
align-items:center;
justify-content:center;
border-radius:50%;
margin-right:10px;
transition:.3s;
}

.about-social a:hover{
background:#005edc;
}

.about-btn{
display:inline-block;
padding:12px 30px;
background:#000;
color:#fff;
text-decoration:none;
border-radius:30px;
transition:.3s;
}

.about-btn:hover{
background:#333;
}

/* HIGHLIGHTS */
.about-highlights{
display:flex;
justify-content:center;
gap:40px;
padding:60px 10%;
background:#fff;
flex-wrap:wrap;
}

.highlight-box{
text-align:center;
padding:30px 40px;
background:#f4f7fb;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.highlight-box h3{
font-size:32px;
color:#0a7cff;
margin-bottom:5px;
}

/* Responsive */
@media(max-width:900px){
.about-container{
flex-direction:column;
text-align:center;
}

.about-content h1{
font-size:32px;
}
}

/* Mobile style */
@media (max-width: 768px) {
  .section{
      padding: 20px 0;
  }
  .about-grid .check-list{
          margin-left: 20px;
  }
  .about-heading span{
      font-size:30px;
  }
  .about-content h1{
      font-size: 20px;
  }
  .about-hero {
      padding: 30px 20px;
  }
  .about-tagline{
      font-size: 15px;
  }
}

/*package slider section*/
/* PACKAGE SLIDER AREA */
.ptp-package-area {
  padding: 90px 20px;
  background: #f4f8fb;
}

.ptp-container {
  max-width: 1200px;
  margin: auto;
}

.ptp-header {
  text-align: center;
  margin-bottom: 60px;
}

.ptp-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ptp-header p {
  color: #666;
}

.ptp-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}



.ptp-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ptp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ptp-duration {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff5722;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
}

.ptp-content {
  padding: 25px;
  text-align: center;
}

.ptp-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.ptp-price {
  font-size: 22px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 20px;
}

.ptp-btn {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(45deg,#007bff,#00c6ff);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.ptp-btn:hover {
  color: #fff;
}

.ptpSwiper {
  padding-bottom: 50px;
}



/*reviews*/

.google-review-section{
padding:80px 0;
background:#f7f9fc;
}

.review-title{
text-align:center;
font-size:34px;
font-weight:700;
margin-bottom:35px;
}

/* overall rating */

.overall-rating{
display:flex;
align-items:center;
justify-content:center;
gap:18px;
background:#fff;
padding:20px 30px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
max-width:420px;
margin:0 auto 50px;
}

.rating-left img{
width:60px;
}

.rating-score{
display:flex;
align-items:center;
gap:12px;
}

.rating-number{
font-size:34px;
font-weight:700;
}

.rating-stars svg{
width:18px;
fill:#fbbc05;
}

.rating-text{
font-size:14px;
color:#666;
margin-top:3px;
}

/* review slider */

.reviewSwiper{
padding-bottom:20px;
}

.review-card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
height:100%;
}

.review-user{
display:flex;
align-items:center;
gap:12px;
margin-bottom:10px;
}

.review-user img{
width:50px;
height:50px;
border-radius:50%;
}

.review-user h4{
font-size:16px;
margin:0;
}

.review-user span{
font-size:13px;
color:#888;
}

.review-stars{
color:#fbbc05;
font-size:16px;
margin-bottom:10px;
}

.review-card p{
font-size:14px;
color:#555;
line-height:1.6;
}