:root{
    --primary:#0B4DA2;
    --secondary:#1E6FE8;
    --accent:#FFC107;
}

body{
    font-family: 'Poppins', sans-serif;

    overflow-x: hidden;
}

.hero-section{
    background:
    linear-gradient(
    rgba(11,77,162,.85),
    rgba(11,77,162,.85)),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1600');

    background-size:cover;
    background-position:center;
    color:#fff;
    padding-top:100px;
     padding-bottom:50px;
}


.hero-badge{
    background:#fff;
    color:var(--primary);
    padding:10px 20px;
    border-radius:50px;
    display:inline-block;
    font-weight:600;
}

.hero-title{
    font-size:64px;
    font-weight:800;
    margin-top:20px;
    line-height:1.1;
}

.hero-title span{
    color:var(--accent);
}

.hero-desc{
    margin-top:20px;
    font-size:18px;
    opacity:.9;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

.feature{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    padding:12px 18px;
    border-radius:10px;
}

.booking-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.booking-card h3{
    color:#0B4DA2;
    margin-bottom:25px;
    text-align:center;
    font-weight:700;
}

@media(max-width:768px){

.hero-title{
    font-size:40px;
}

.booking-card{
    margin-top:40px;
}

.hero-section{
    padding-top:130px;
     padding-bottom:50px;
}

}
.navbar{
    padding:15px 0;
}

.logo-text{
    color:#0B4DA2;
    font-size:34px;
    font-weight:800;
}

.navbar-brand img{
    height: 60;
}


.nav-link{
    font-weight:600;
    color:#111827 !important;
    margin:0 10px;
    transition:.3s;
}

.nav-link:hover{
    color:#0B4DA2 !important;
}

.dropdown-menu{
    border:none;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.dropdown-item{
    padding:12px 20px;
}

.dropdown-item:hover{
    background:#f5f7ff;
    color:#0B4DA2;
}
.footer-section{
    background:#0b1f44;
    color:#fff;
    padding:80px 0 20px;
}

.footer-logo{
    font-size:32px;
    font-weight:800;
    margin-bottom:15px;
}

.footer-text{
    color:#cfd8e3;
    line-height:1.8;
}

.social-links{
    margin-top:20px;
}

.social-links a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#123269;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    background:#ffc107;
    color:#000;
}

.footer-section h5{
    margin-bottom:20px;
    font-weight:700;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#cfd8e3;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ffc107;
    padding-left:5px;
}

.contact-info p{
    margin-bottom:15px;
    color:#cfd8e3;
}

.contact-info i{
    color:#ffc107;
    margin-right:10px;
}

.footer-divider{
    border-color:rgba(255,255,255,.15);
    margin:40px 0 20px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom p{
    margin:0;
    color:#cfd8e3;
}

.footer-bottom a{
    color:#cfd8e3;
    text-decoration:none;
}

.footer-bottom a:hover{
    color:#ffc107;
}

@media(max-width:768px){

.footer-bottom{
    text-align:center;
    gap:15px;
    justify-content:center;
}

}

.section-padding{
padding:90px 0;
}

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

.section-title h2{
font-size:42px;
font-weight:700;
}
.service-card,
.why-card,
.testimonial-card{
background:#fff;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
height:100%;
transition:.3s;
}

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

.service-card i,
.why-card i{
font-size:40px;
color:var(--primary);
margin-bottom:15px;
}
.destination-card{
overflow:hidden;
border-radius:20px;
position:relative;
}

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

.destination-card h5{
position:absolute;
bottom:15px;
left:15px;
color:#fff;
font-size:24px;
font-weight:700;
}

.package-card{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
height:100%;
}

.package-card.featured{
background:var(--primary);
color:#fff;
}

.package-card ul{
list-style:none;
padding:0;
}

.package-card li{
padding:8px 0;
}

.cta-section{
    background:linear-gradient(135deg,#0047AB,#0B63F6);
    padding:90px 0;
    border-radius:30px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
}



.cta-section h2{
    font-size:60px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.cta-section h2 span{
    color:#FFC107;
}

.cta-section p{
    font-size:18px;
    opacity:.95;
}



.feature-box{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    padding:14px 20px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:10px;
}

.feature-box i{
    color:#FFC107;
}

.cta-contact-card{
    background:#fff;
    color:#111;
    padding:35px;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.cta-contact-card h4{
    text-align:center;
    margin-bottom:25px;
    color:#0047AB;
    font-weight:700;
}

.phone-number{
    font-size:38px;
    font-weight:800;
    color:#0047AB;
    text-align:center;
    margin-bottom:10px;
}

.phone-number.whatsapp{
    color:#16A34A;
}

.cta-contact-card p{
    color:#666;
    text-align:center;
    margin:20px 0;
}

@media(max-width:768px){

    .cta-section{
        padding:60px 20px;
    }

    .cta-section h2{
        font-size:38px;
    }

    .phone-number{
        font-size:28px;
    }

    .cta-contact-card{
        margin-top:30px;
    }

}

.contact-box{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:28px;
text-decoration:none;
z-index:999;
}

/*=========================
BACK TO TOP
=========================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:95px;   /* WhatsApp button ke upar */

    width:50px;

    height:50px;

    background:#0d6efd;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:18px;

    text-decoration:none;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    background:#084298;

    color:#fff;

    transform:translateY(-4px);

}
