*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#ffffff;
    font-family:Helvetica,sans-serif;
}

h1{
    color:red;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f5f5f5;
}

/* TOP BAR */

.top-bar{
    background:#082f66;
    color:#fff;
    padding:10px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.top-right a{
    color:#fff;
    font-size:20px;
    text-decoration:none;
}

.top-right a:hover{
    color:#FDB913;
}
/* HEADER */

header{
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.logo img{
    height:70px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:bold;
}

.call-box{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:inherit;
}
/* HERO SECTION */

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:100px;
    background:url("images/hero.jpg") center center/cover no-repeat;
    min-height:600px;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.20);
}

.hero-content{
    position:relative;
    z-index:2;
    width:50%;
    color:#fff;
}

.hero-content h4{
    font-size:30px;
    color:red;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:70px;
    color:#f5f5f5;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    background:#ffbf00;
    color:#000;
    padding:16px 35px;
    text-decoration:none;
    border-radius:50px;
    font-size:20px;
    font-weight:bold;
}

.hero-btn:hover{
    background:#fff;
}


.hero-image img{
    width:100px;

}
/* BOOKING */

.booking{
    padding:70px 20px;
    background:#f8f9fc;
}

.booking-form{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    max-width:450px;
    margin:auto;
}

.booking h2{
    font-size:42px;
    color:#003366;
    text-align:center;
    margin-bottom:25px;
    font-weight:800;
}

.booking h2 span{
    color:#FDB913;
}
.booking-form input,
.booking-form select{
    width:100%;
    height:58px;
    border:2px solid #e6e6e6;
    border-radius:14px;
    padding:0 18px;
    font-size:17px;
    margin-bottom:18px;
    transition:.3s;
}

.booking-form input:focus,
.booking-form select:focus{
    border-color:#003366;
    box-shadow:0 0 12px rgba(0,51,102,.25);
    outline:none;
}
.book-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:50px;
    background:linear-gradient(90deg,#00c853,#00e676);
    color:#fff;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,200,83,.35);
}

.book-btn:hover{
    transform:translateY(-4px);
}


/* ==========================
   GALLERY
========================== */

.gallery{
    padding:80px 5%;
    background:#f8f9fa;
}

.gallery h2{
    text-align:center;
    font-size:42px;
    color:#003366;
    margin-bottom:40px;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}


}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover{
    transform:translateY(-8px);
}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

.gallery{
    padding:50px 15px;
}

.gallery h2{
    font-size:30px;
    margin-bottom:25px;
}

.gallery-container{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.gallery-item{
    border-radius:12px;
}

.gallery-item img{
    height:130px;
}

}
/* FLIGHT CARD */

.flight-card{
    width:100%;
    height:600px;
    border-radius:25px;
    overflow:hidden;
    position:relative;
    box-shadow:0 20px 45px rgba(0,0,0,.20);
    transition:.4s;
}

/* ==========================
   HOTEL & FLIGHT CARD
========================== */

.travel-services{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    width:95%;
    margin:50px auto;
}

.hotel-card,
.flight-card{

    position:relative;

    width:100%;

    height:650px;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

    cursor:pointer;

}

.hotel-card img,
.flight-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:transform .7s ease;

}

.hotel-card:hover img,
.flight-card:hover img{

    transform:scale(1.08);

}

.hotel-overlay,
.flight-overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:35px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.70),
        rgba(0,0,0,.20),
        transparent
    );

}

.hotel-overlay h2,
.flight-overlay h2{

    color:#fff;

    font-size:34px;

    margin-bottom:8px;

}

.hotel-overlay p,
.flight-overlay p{

    color:#fff;

    font-size:20px;

    margin-bottom:18px;

}

.features{

    display:flex;

    flex-direction:column;

    gap:10px;

    margin-bottom:22px;

}

.features span{

    color:#FFD54F;

    font-size:17px;

}

.hotel-btn,
.flight-btn{

    display:inline-block;

    width:max-content;

    background:#FDB913;

    color:#000;

    text-decoration:none;

    padding:14px 28px;

    border-radius:50px;

    font-weight:bold;

    transition:.3s;

}

.hotel-btn:hover,
.flight-btn:hover{

    background:#fff;

}

/* MOBILE */
.travel-services-section{
    text-align:center;
    padding:80px 5%;
    background:#f8f9fa;
}

.travel-services-section h2{
    font-size:52px;
    color:#003366;
    font-weight:700;
    margin-bottom:15px;
}

.travel-services-section p{
    font-size:22px;
    color:#666;
    letter-spacing:1px;
    margin-bottom:50px;
}

@media(max-width:768px){

.travel-services{

    grid-template-columns:1fr;

}

.hotel-card,
.flight-card{

    height:500px;

}

.hotel-overlay,
.flight-overlay{

    padding:25px;

}

.hotel-overlay h2,
.flight-overlay h2{

    font-size:28px;

}

.hotel-overlay p,
.flight-overlay p{

    font-size:16px;

}

.features span{

    font-size:15px;

}

}
/* VISA CARD */

.visa-card{

    position:relative;

    width:100%;

    height:650px;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}

.visa-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.7s;

}

.visa-card:hover img{

    transform:scale(1.08);

}

.visa-overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:35px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.70),
        rgba(0,0,0,.20),
        transparent
    );

}

.visa-overlay h2{

    color:#fff;

    font-size:34px;

    margin-bottom:8px;

}

.visa-overlay p{

    color:#fff;

    font-size:20px;

    margin-bottom:18px;

}

.visa-btn{

    display:inline-block;

    background:#FDB913;

    color:#000;

    text-decoration:none;

    padding:14px 28px;

    border-radius:50px;

    font-weight:bold;

}

.visa-btn:hover{

    background:#fff;

}
/* =========================
   SERVICES
========================= */

.service-box{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    width:95%;
    margin:50px auto;
}

.service-card{
    background:#fff;
    border-radius:15px;
    padding:20px 12px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card i{
    font-size:42px;
    color:#0b3b75;
    margin-bottom:15px;
}

.service-card h3{
    font-size:18px;
    color:#0b3b75;
    margin-bottom:10px;
}

.service-card p{
    font-size:14px;
    color:#666;
}

/* ABOUT */

.about{
    padding:90px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    background:#fff;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-content{
    flex:1;
}

.about-content h2{
    font-size:45px;
    color:#0d3b73;
    margin-bottom:20px;
}

.about-content p{
    font-size:18px;
    line-height:32px;
    color:#555;
    margin-bottom:20px;
}

.about-btn{
    display:inline-block;
    background:#f4b400;
    color:#000;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.about-btn:hover{
    background:#0d3b73;
    color:#fff;
}
/* REVIEWS */

.reviews{
    padding:90px 8%;
    background:#f8f9fa;
    text-align:center;
}

.reviews h2{
    font-size:45px;
    color:#0d3b73;
    margin-bottom:50px;
}

.review-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.review-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-10px);
}

.review-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.review-card p{
    color:#555;
    line-height:28px;
    margin-bottom:20px;
}

.review-card h4{
    color:#0d3b73;
}
/* TOUR PACKAGES */

.packages{
    padding:90px 8%;
    background:#ffffff;
    text-align:center;
}

.packages h2{
    font-size:45px;
    color:#003366;
    margin-bottom:50px;
}

.package-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

@media (max-width:768px){

.package-container{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.package-card img{
    height:130px;
}

.package-card h3{
    font-size:20px;
}

.package-card p{
    font-size:14px;
}

.package-btn{
    padding:10px 20px;
    font-size:14px;
}

}

.package-card:hover{
    transform:translateY(-10px);
}

.package-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.package-card h3{
    color:#003366;
    margin:20px 0 10px;
}

.package-card p{
    color:#666;
    margin-bottom:20px;
}

.package-btn{
    display:inline-block;
    margin-bottom:25px;
    padding:12px 30px;
    background:#FDB913;
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
}

.package-btn:hover{
    background:#003366;
    color:#fff;
}


/* COUNTER */

.counter{
    background:#003366;
    color:#fff;
    padding:70px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    text-align:center;
    gap:30px;
}

.counter-box h2{
    font-size:50px;
    color:#FDB913;
}

.counter-box p{
    font-size:20px;
    margin-top:10px;
}
.map{
    width:100%;
    margin:0;
}

.map iframe{
    width:100%;
    display:block;
}
/* SCROLL ANIMATION */

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}/* DESTINATIONS */

.destinations{
    padding:90px 8%;
    background:#f8f9fa;
}

.destination-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.destination-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.destination-box img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.destination-box:hover img{
    transform:scale(1.1);
}

.overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(transparent,rgba(0,0,0,.8));
}

.overlay h3{
    color:#fff;
    font-size:24px;
}
/* CALL TO ACTION */

.cta{

    background:linear-gradient(rgba(0,51,102,.85),
    rgba(0,51,102,.85)),
    url("images/cta.jpg");

    background-size:cover;
    background-position:center;

    padding:100px 8%;

    text-align:center;

    color:white;

}

.cta h2{

    font-size:50px;

    margin-bottom:20px;

}

.cta p{

    font-size:20px;

    margin-bottom:35px;

    line-height:35px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons a{

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

}

.cta-buttons .call-btn{

    background:#FDB913;

    color:#000;

}

.cta-buttons .whatsapp-btn{

    background:#25D366;

    color:#fff;

}

.cta-buttons a:hover{

    transform:translateY(-5px);

}
/* FAQ */

.faq{
    padding:90px 8%;
    background:#ffffff;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq details{
    background:#f7f7f7;
    margin-bottom:20px;
    border-radius:12px;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.faq summary{
    font-size:20px;
    font-weight:bold;
    cursor:pointer;
    color:#003366;
}

.faq p{
    margin-top:15px;
    color:#555;
    line-height:28px;
}
/* BOOKING PROCESS */

.process{
    padding:90px 8%;
    background:#f8f9fa;
}

.process-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.process-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    position:relative;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    transition:.3s;
}

.process-box:hover{
    transform:translateY(-10px);
}

.number{
    position:absolute;
    top:-15px;
    left:20px;
    width:40px;
    height:40px;
    background:#FDB913;
    color:#000;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
}

.process-box i{
    font-size:50px;
    color:#003366;
    margin:20px 0;
}

.process-box h3{
    color:#003366;
    margin-bottom:15px;
}

.process-box p{
    color:#666;
    line-height:28px;
}
/* ACHIEVEMENTS */

.achievement{

    background:#003366;
    color:#fff;
    padding:90px 8%;
    text-align:center;

}

.achievement-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;

}

.achievement-item h2{

    font-size:55px;
    color:#FDB913;

}

.achievement-item p{

    font-size:18px;
    margin-top:10px;

}
/* CONTACT */

.contact{
    padding:90px 8%;
    background:#ffffff;
}

.contact h2{
    text-align:center;
    font-size:45px;
    color:#0d3b73;
    margin-bottom:50px;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info{
    background:#0d3b73;
    color:#fff;
    padding:40px;
    border-radius:20px;
}

.contact-info h3{
    font-size:32px;
    margin-bottom:20px;
}

.contact-info p{
    margin:15px 0;
    font-size:18px;
}

.call-btn,
.whatsapp-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    margin-right:10px;
}

.call-btn{
    background:#ffc107;
    color:#000;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.contact-form{
    background:#f8f9fa;
    padding:40px;
    border-radius:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.contact-form button{
    width:100%;
    padding:15px;
    background:#0d3b73;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
}

.contact-form button:hover{
    background:#ffc107;
    color:#000;
}
/* FOOTER */

.footer{

background:#082f66;
color:#fff;
padding:70px 8% 20px;

}

.footer-container{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;

}

.footer-box h2,
.footer-box h3{

margin-bottom:20px;
color:#FDB913;

}

.footer-box p{

line-height:28px;

}

.footer-box ul{

list-style:none;

}

.footer-box ul li{

margin:10px 0;

}

.footer-box ul li a{

color:white;
text-decoration:none;

}

.footer-box ul li a:hover{

color:#FDB913;

}

.social-icons{

display:flex;
gap:15px;
margin-top:20px;

}

.social-icons a{

width:45px;
height:45px;
background:white;
color:#082f66;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:20px;
transition:.3s;

}

.social-icons a:hover{

background:#FDB913;
transform:rotate(360deg);

}

.footer-bottom{

margin-top:40px;
text-align:center;
border-top:1px solid rgba(255,255,255,.2);
padding-top:20px;

}
/* FLOATING BUTTONS */

.whatsapp-float{
    position:fixed;
    bottom:30px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:999;
}

.call-float{
    position:fixed;
    bottom:105px;
    right:25px;
    width:60px;
    height:60px;
    background:#003366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:999;
}

#topBtn{
    position:fixed;
    left:25px;
    bottom:30px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#FDB913;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
}*{
    box-sizing:border-box;
}

html, body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
}
/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width:768px){

html,body{
    width:100%;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}

/* Top Bar */

.top-bar{
    flex-direction:column;
    text-align:center;
    padding:12px;
}

/* Header */

header{
    flex-direction:column;
    padding:15px;
    gap:20px;
}

.logo img{
    height:60px;
}

nav ul{
    display:flex;
    flex-wrap:nowrap;
    justify-content:center;
    gap:8px;
    overflow-x:auto;
    white-space:nowrap;
    padding-bottom:8px;
}

nav ul::-webkit-scrollbar{
    display:none;
}

nav ul li a{
    font-size:14px;
}
.call-box{
    justify-content:center;
}

/* Hero */

.hero{
    min-height:70vh;
    padding:40px 20px;
    text-align:center;
}

.hero-content{
    width:100%;
}

.hero-content h1{
    font-size:34px;
}

.hero-content h4{
    font-size:18px;
}

.hero-content p{
    font-size:16px;
    line-height:28px;
}

/* Booking */

.booking-form{
    grid-template-columns:1fr;
}

/* Services */

.service-box{
    grid-template-columns:1fr;
}

/* About */

.about{
    flex-direction:column;
    text-align:center;
}

/* Packages */

.package-container{
    grid-template-columns:1fr;
}

/* Reviews */

.review-container{
    grid-template-columns:1fr;
}

/* Destinations */

.destination-container{
    grid-template-columns:1fr;
}

/* Contact */

.contact-container{
    grid-template-columns:1fr;
}

/* Footer */

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.social-icons{
    justify-content:center;
}
/* ==========================
   CONTACT MOBILE RESPONSIVE
========================== */

@media (max-width:768px){

.contact{
    padding:50px 15px;
}

.contact h2{
    font-size:30px;
    margin-bottom:30px;
}

.contact-container{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-info,
.contact-form{
    width:100%;
    padding:20px;
    border-radius:15px;
}

.contact-info h3{
    font-size:24px;
}

.contact-info p{
    font-size:16px;
    line-height:26px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    font-size:16px;
    padding:14px;
}

.contact-form button{
    width:100%;
    padding:15px;
    font-size:18px;
}

.call-btn,
.whatsapp-btn{
    display:block;
    width:100%;
    text-align:center;
    margin:10px 0;
    padding:14px;
}

}

/* Achievement */

.achievement-container{
    grid-template-columns:1fr 1fr;
}

/* Counter */

.counter{
    grid-template-columns:1fr 1fr;
}

/* Process */

.process-container{
    grid-template-columns:1fr;
}

}
/* ===========================
POPULAR PACKAGES MOBILE
=========================== */

@media (max-width:768px){

.package-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.package-card{
    border-radius:15px;
    overflow:hidden;
}

.package-card img{
    width:100%;
    height:120px;
    object-fit:cover;
}

.package-card h3{
    font-size:18px;
    margin:10px;
}

.package-card p{
    font-size:13px;
    margin:0 10px 10px;
}

.package-btn{
    display:block;
    width:85%;
    margin:12px auto;
    padding:10px;
    font-size:15px;
    text-align:center;
}

}
/* ===========================
SERVICES MOBILE RESPONSIVE
=========================== */

@media (max-width:768px){

.services{
    padding:50px 15px;
}

.services h2{
    font-size:30px;
    margin-bottom:25px;
    text-align:center;
}

.service-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    width:100%;
    margin:20px auto;
}

.service-card{
    padding:15px 10px;
    border-radius:15px;
    text-align:center;
}

.service-card i{
    font-size:35px;
    margin-bottom:10px;
}

.service-card h3{
    font-size:15px;
    margin-bottom:8px;
}

.service-card p{
    font-size:12px;
    line-height:18px;
}

.call-service-btn{
    display:block;
    width:90%;
    margin:10px auto 0;
    padding:8px;
    font-size:13px;
    border-radius:25px;
    text-align:center;
}

}
@media (max-width:768px){

header{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    padding:10px;
}

.logo{
    order:1;
}

.logo img{
    height:50px;
}

.call-box{
    order:2;
}

.call-box p{
    display:none;
}

.call-box h3{
    font-size:13px;
}

nav{
    order:3;
    width:100%;
    margin-top:10px;
}

nav ul{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

nav ul li a{
    font-size:14px;
}

}
@media (max-width:768px){

.top-bar{
    flex-direction:column;
    padding:10px;
    text-align:center;
}

header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px;
    gap:8px;
}

.logo img{
    width:45px;
    height:45px;
}

nav{
    flex:1;
}

nav ul{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
    padding:0;
    margin:0;
}

nav ul li{
    list-style:none;
}

nav ul li a{
    font-size:13px;
}

.call-box{
    gap:5px;
}

.call-box .icon{
    width:35px;
    height:35px;
    font-size:14px;
}

.call-box p{
    display:none;
}

.call-box h3{
    font-size:12px;
}

.hero{
    padding:40px 20px;
}

.hero-content{
    width:100%;
    text-align:center;
}

.hero-content h1{
    font-size:38px;
}

.hero-content h4{
    font-size:22px;
}

.hero-content p{
    font-size:16px;
}

}
/* ===== MOBILE HEADER ===== */

@media (max-width:768px){

header{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:10px;
}

.logo img{
    height:55px;
    margin-bottom:10px;
}

nav ul{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin:10px 0;
    padding:0;
}

nav ul li{
    list-style:none;
}

nav ul li a{
    font-size:14px;
}

.call-box{
    margin-top:10px;
}

.call-box p{
    display:none;
}

.call-box h3{
    font-size:15px;
}

}
/* ==========================
   MOBILE HEADER FIX
========================== */

@media screen and (max-width:768px){

header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:nowrap;
    padding:10px;
}

.logo{
    order:1;
}

.logo img{
    width:45px;
    height:45px;
}

nav{
    order:2;
    flex:1;
    margin:0 8px;
}

nav ul{
    display:flex;
    flex-wrap:nowrap;
    justify-content:center;
    gap:8px;
}

nav ul li{
    list-style:none;
}

nav ul li a{
    font-size:12px;
    font-weight:bold;
    text-decoration:none;
    color:#000;
}

.call-box{
    order:3;
    display:flex;
    align-items:center;
    gap:5px;
}

.call-box p{
    display:none;
}

.call-box h3{
    font-size:12px;
    margin:0;
}

.call-box .icon{
    width:35px;
    height:35px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#003366;
    color:#fff;
}

}
.top-header{
    background:#f5f5f5;
    padding:12px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #ddd;
}

.lang-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.lang-box span{
    font-weight:bold;
    color:#222;
}

.lang-box select{
    padding:7px 12px;
    border:1px solid #ccc;
    border-radius:4px;
    font-size:15px;
}

.header-contact{
    display:flex;
    align-items:center;
    gap:18px;
}

.header-contact a{
    color:#111;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
}

.header-contact i{
    color:#000;
    margin-right:6px;
}

@media(max-width:768px){

.top-header{
    flex-direction:column;
    gap:10px;
    padding:10px;
}

.header-contact{
    flex-direction:column;
    gap:8px;
}

}
/* TOUR PACKAGE PAGE */

.tour-heading{
    text-align:center;
    padding:80px 20px 40px;
}

.tour-heading h1{
    font-size:50px;
    color:#003366;
    margin-bottom:10px;
}

.tour-heading p{
    font-size:20px;
    color:#666;
}

.tour-category{
    width:90%;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.tour-box{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    transition:.3s;
}

.tour-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.tour-box span{
    font-size:55px;
    display:block;
    margin-bottom:20px;
}

.tour-box h2{
    color:#003366;
    margin-bottom:10px;
}

.tour-box p{
    color:#666;
}

@media(max-width:768px){

.tour-category{
    grid-template-columns:1fr;
}

.tour-heading h1{
    font-size:34px;
}

}
/* RELIGIOUS TOUR */

.tour-page-title{

text-align:center;

padding:70px 20px;

}

.tour-page-title h1{

font-size:48px;

color:#003366;

margin-bottom:10px;

}

.tour-page-title p{

font-size:20px;

color:#666;

}

.tour-grid{

width:90%;

margin:auto;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

padding-bottom:80px;

}

.tour-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.12);

transition:.4s;

}

.tour-card:hover{

transform:translateY(-10px);

}

.tour-card img{

width:100%;

height:230px;

object-fit:cover;

transition:.5s;

}

.tour-card:hover img{

transform:scale(1.08);

}

.tour-content{

padding:20px;

text-align:center;

}

.tour-content h2{

color:#003366;

margin-bottom:10px;

}

.tour-content p{

color:#777;

margin-bottom:10px;

}

.tour-content h3{

color:#FDB913;

margin-bottom:18px;

}

.tour-content a{

display:inline-block;

padding:12px 24px;

background:#003366;

color:#fff;

text-decoration:none;

border-radius:30px;

}

.tour-content a:hover{

background:#FDB913;

color:#000;

}

@media(max-width:768px){

.tour-grid{

grid-template-columns:1fr;

}

}
/* TOUR INFO */

.tour-info{

    width:90%;
    max-width:1200px;

    margin:60px auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.info-box{

    background:linear-gradient(135deg,#FFD700,#FDB913);

    color:#222;

    padding:35px 20px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(218,165,32,.35);

    transition:.35s;

    border:2px solid #fff;

}

.info-box:hover{

    transform:translateY(-10px);

    background:linear-gradient(135deg,#FFE45C,#FFC107);

    box-shadow:0 18px 40px rgba(255,193,7,.45);

}

.info-box h3{

    color:#003366;

    font-size:22px;

    margin-bottom:15px;

    font-weight:bold;

}

.info-box p{

    color:#222;

    font-size:18px;

    font-weight:600;

}

@media(max-width:992px){

.tour-info{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.tour-info{

    grid-template-columns:1fr;

}

}
/* TOUR HIGHLIGHTS */

.tour-highlights{

    width:90%;
    max-width:1200px;

    margin:60px auto;

}

.tour-highlights h2{

    text-align:center;

    font-size:40px;

    color:#003366;

    margin-bottom:35px;

}

.highlight-box{

    background:linear-gradient(135deg,#6B0F1A,#8B1E2D);

    color:#fff;

    padding:22px 30px;

    margin-bottom:18px;

    border-radius:15px;

    font-size:22px;

    font-weight:600;

    box-shadow:0 10px 25px rgba(107,15,26,.35);

    transition:.35s;

}

.highlight-box:hover{

    background:linear-gradient(135deg,#8B1E2D,#A52A2A);

    transform:translateX(10px);

    box-shadow:0 15px 35px rgba(107,15,26,.50);

}
/* Suggested Hotels */

.suggested-hotels{

    width:90%;
    max-width:1200px;

    margin:60px auto;

}

.suggested-hotels h2{

    text-align:center;

    color:#003366;

    font-size:38px;

    margin-bottom:30px;

}

.hotel-list{

    list-style:none;

    padding:0;

}

.hotel-list li{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:22px;

    color:#333;

    margin-bottom:20px;

    font-weight:500;

}

.hotel-list li::before{

    content:"";

    width:16px;

    height:16px;

    background:#003366;

    border-radius:50%;

    display:inline-block;

}
/* Day Wise Itinerary */

.itinerary{

    width:90%;
    max-width:1000px;

    margin:70px auto;

}

.itinerary h2{

    text-align:center;

    font-size:38px;

    color:#003366;

    margin-bottom:40px;

}

.day-box{

    display:flex;

    align-items:flex-start;

    gap:25px;

    margin-bottom:35px;

}

.day-number{

    min-width:120px;

    background:#E91E63;

    color:#fff;

    padding:14px;

    text-align:center;

    border-radius:30px;

    font-size:20px;

    font-weight:bold;

}

.day-content{

    flex:1;

    padding:18px 25px;

    border-left:6px solid #FF69B4;

    background:#FFF5F8;

    border-radius:10px;

    font-size:18px;

    color:#444;

    line-height:1.8;

}
/* BOOKING */

.booking-section{

    width:90%;
    max-width:900px;

    margin:80px auto;

    background:#fff;

    border-radius:25px;

    padding:45px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.booking-section h2{

    text-align:center;

    font-size:40px;

    color:#003366;

    margin-bottom:10px;

}

.booking-section p{

    text-align:center;

    color:#666;

    margin-bottom:35px;

}

.booking-form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.booking-form input,
.booking-form textarea{

    padding:16px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:17px;

}

.booking-form input:focus,
.booking-form textarea:focus{

    border:2px solid #FDB913;

    outline:none;

}

.booking-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:15px;

}

.call-btn{

    background:#003366;

    color:#fff;

    text-decoration:none;

    padding:16px 35px;

    border-radius:50px;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

}

.call-btn:hover{

    background:#FDB913;

    color:#000;

}

.whatsapp-btn{

    background:#25D366;

    color:#fff;

    text-decoration:none;

    padding:16px 35px;

    border-radius:50px;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

}

.whatsapp-btn:hover{

    background:#128C7E;

}

@media(max-width:768px){

.booking-buttons{

    flex-direction:column;

}

}
p{

    font-size:22px;

}
.itinerary-list{

    list-style:disc;

    padding-left:30px;

}

.itinerary-list li{

    margin-bottom:12px;

    font-size:18px;

}
.tour-banner{

    width:90%;
    max-width:1300px;

    margin:60px auto;

    display:flex;

    align-items:center;

    gap:50px;

}

.banner-image{

    flex:1;

}

.banner-image img{

    width:100%;

    border-radius:20px;

    height:500px;

    object-fit:cover;

}

.banner-text{

    flex:1;

}

.banner-text h1{

    font-size:48px;

    color:#003366;

    margin-bottom:20px;

}

.banner-text p{

    font-size:20px;

    line-height:1.8;

    color:#555;

    margin-bottom:30px;

}
/* ============================= */
/* Heritage / Religious Tour Page */
/* ============================= */

.tour-page-title{

    text-align:center;

    padding:60px 20px;

}

.tour-page-title h1{

    font-size:48px;

    color:#003366;

    margin-bottom:15px;

}

.tour-page-title p{

    font-size:22px;

    color:#666;

}

.tour-grid{

    width:90%;

    max-width:1400px;

    margin:50px auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.tour-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    transition:.35s;

}

.tour-card:hover{

    transform:translateY(-10px);

}

.tour-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.tour-card:hover img{

    transform:scale(1.08);

}

.tour-content{

    padding:25px;

    text-align:center;

}

.tour-content h2{

    color:#003366;

    font-size:34px;

    margin-bottom:12px;

}

.tour-content p{

    color:#666;

    font-size:20px;

    margin-bottom:12px;

}

.tour-content h3{

    color:#FDB913;

    font-size:28px;

    margin-bottom:20px;

}

.tour-btn{

    display:inline-block;

    background:#003366;

    color:#fff;

    text-decoration:none;

    padding:14px 32px;

    border-radius:40px;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

}

.tour-btn:hover{

    background:#FDB913;

    color:#000;

}

@media(max-width:992px){

.tour-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.tour-grid{

    grid-template-columns:1fr;

}

.tour-page-title h1{

    font-size:36px;

}

}
/* ========================= */
/* HERITAGE TOURS */
/* ========================= */

.tour-page-title{
    text-align:center;
    padding:60px 20px;
}

.tour-page-title h1{
    font-size:50px;
    color:#003366;
    margin-bottom:10px;
}

.tour-page-title p{
    font-size:20px;
    color:#666;
}

.tour-grid{
    width:90%;
    max-width:1400px;
    margin:50px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.tour-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.4s;
}

.tour-card:hover{
    transform:translateY(-10px);
}

.tour-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.tour-card:hover img{
    transform:scale(1.08);
}

.tour-content{
    padding:25px;
    text-align:center;
}

.tour-content h2{
    font-size:30px;
    color:#003366;
    margin-bottom:10px;
}

.tour-content p{
    font-size:18px;
    color:#666;
    margin-bottom:10px;
}

.tour-content h3{
    font-size:28px;
    color:#FDB913;
    margin-bottom:20px;
}

.tour-btn{
    display:inline-block;
    padding:14px 30px;
    background:#003366;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}

.tour-btn:hover{
    background:#FDB913;
    color:#000;
}

@media(max-width:992px){

.tour-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.tour-grid{
    grid-template-columns:1fr;
}

.tour-page-title h1{
    font-size:36px;
}

}
.taxi-card{
    position:relative;
    width:350px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    transition:0.4s;
    margin:auto;
    background:#fff;
}

.taxi-card:hover{
    transform:translateY(-8px);
}

.taxi-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.taxi-overlay{
    padding:25px;
    text-align:center;
    background:#ffffff;
}

.taxi-overlay h2{
    color:#003366;
    font-size:28px;
    margin-bottom:10px;
}

.taxi-overlay p{
    color:#555;
    margin-bottom:20px;
}

.features{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:25px;
}

.features span{
    background:#f5f5f5;
    padding:10px;
    border-radius:8px;
    font-size:15px;
}

.taxi-btn{
    display:inline-block;
    text-decoration:none;
    background:#25D366;
    color:#fff;
    padding:14px 30px;
    border-radius:40px;
    font-size:18px;
    font-weight:bold;
    transition:0.3s;
}

.taxi-btn:hover{
    background:#128C7E;
    transform:scale(1.05);
}