@charset "utf-8";
/* CSS Document */

/*==================================================
JMDYatra V2 Header
==================================================*/

:root{
    --primary:#b30000;
    --secondary:#ff9800;
    --dark:#003366;
    --light:#f8f9fa;
    --white:#ffffff;
    --text:#444444;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
}

/*======================
TOP HEADER
=======================*/

.top-header{
    background:var(--dark);
    color:#fff;
    font-size:14px;
}

.top-info{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    gap:22px;
}

.top-info li{
    display:flex;
    align-items:center;
}

.top-info i{
    color:var(--secondary);
    margin-right:8px;
}

.social-icons a{
    width:34px;
    height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-left:8px;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--secondary);
    transform:translateY(-3px);
}

/*======================
HEADER
=======================*/

.main-header{
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    z-index:999;
}

.navbar{
    padding:15px 0;
}

.logo-area{
    display:flex;
    align-items:center;
}

.logo-area img{
    width:70px;
    margin-right:15px;
}

.logo-text h2{
    margin:0;
    font-size:28px;
    color:var(--primary);
    font-weight:700;
}

.logo-text h2 span{
    color:var(--secondary);
}

.logo-text p{
    margin:0;
    font-size:13px;
    color:#666;
}

/*======================
MENU
=======================*/

.navbar-nav{
    margin-left:auto;
}

.nav-link{
    font-size:16px;
    font-weight:600;
    color:#222 !important;
    padding:15px 18px !important;
    transition:.3s;
    position:relative;
}

.nav-link:hover{
    color:var(--primary)!important;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:18px;
    bottom:8px;
    width:0;
    height:3px;
    background:var(--secondary);
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:40%;
}

/*======================
DROPDOWN
=======================*/

.dropdown-menu{
    border:none;
    border-radius:12px;
    box-shadow:var(--shadow);
    padding:12px 0;
    margin-top:18px;
}

.dropdown-item{
    padding:12px 25px;
    transition:.3s;
    font-weight:500;
}

.dropdown-item:hover{
    background:#fff4e7;
    color:var(--primary);
    padding-left:35px;
}

/*======================
RIGHT SIDE
=======================*/

.header-right{
    display:flex;
    align-items:center;
    margin-left:25px;
}

.search-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#f2f2f2;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.search-btn:hover{
    background:var(--primary);
    color:#fff;
}

.plan-btn{
    background:linear-gradient(135deg,#ff9800,#ff6b00);
    color:#fff;
    padding:12px 24px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.plan-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(255,152,0,.35);
}

/*======================
MOBILE
=======================*/

.navbar-toggler{
    border:none;
    font-size:28px;
}

.navbar-toggler:focus{
    box-shadow:none;
}

@media(max-width:991px){

.top-header{
    display:none;
}

.logo-text p{
    display:none;
}

.logo-text h2{
    font-size:22px;
}

.logo-area img{
    width:55px;
}

.header-right{
    display:none;
}

.nav-link{
    padding:12px 5px!important;
}

.dropdown-menu{
    box-shadow:none;
    margin-top:0;
}

}



/* HERO SECTION */

.hero-section{

position:relative;

background:url('../images/vaishno-devi-bhavan-view.jpeg') center center;

background-size:cover;

background-repeat:no-repeat;

overflow:hidden;

}

.hero-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.60);

}

.hero-section .container{

position:relative;

z-index:2;

}

.hero-tag{

display:inline-block;

background:#ff9800;

color:#fff;

padding:8px 18px;

border-radius:50px;

font-weight:600;

margin-bottom:20px;

}

.hero-section h1{

font-size:56px;

font-weight:700;

color:#fff;

line-height:1.2;

margin-bottom:20px;

}

.hero-section p{

font-size:20px;

color:#f2f2f2;

margin-bottom:35px;

max-width:650px;

}

.hero-buttons a{

margin-right:15px;

margin-bottom:15px;

}

.hero-stats{

display:flex;

gap:40px;

margin-top:45px;

}

.hero-stats h3{

color:#fff;

font-size:34px;

font-weight:700;

margin-bottom:5px;

}

.hero-stats span{

color:#ddd;

}

.hero-image{

max-height:550px;

animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

0%{transform:translateY(0px);}

50%{transform:translateY(-10px);}

100%{transform:translateY(0px);}

}

@media(max-width:768px){

.hero-section{

text-align:center;

padding:80px 0;

}

.hero-section h1{

font-size:34px;

}

.hero-section p{

font-size:17px;

}

.hero-stats{

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.hero-image{

margin-top:40px;

max-height:320px;

}

}

/* Quick Services */

.section-tag{
display:inline-block;
background:#ff9800;
color:#fff;
padding:6px 18px;
border-radius:30px;
font-weight:600;
margin-bottom:15px;
}

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

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.service-icon{
width:80px;
height:80px;
margin:auto;
border-radius:50%;
background:#b30000;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
margin-bottom:20px;
}

.service-card h4{
font-weight:700;
margin-bottom:15px;
color:#003366;
}

.service-card p{
font-size:15px;
min-height:70px;
}

/* Dashboard */

.dashboard-card{

background:#ffffff;

padding:25px;

text-align:center;

border-radius:15px;

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

transition:.3s;

height:100%;

}

.dashboard-card:hover{

background:#b30000;

color:#ffffff;

transform:translateY(-6px);

}

.dashboard-card i{

font-size:42px;

color:#ff9800;

margin-bottom:20px;

}

.dashboard-card:hover i{

color:#ffffff;

}

.dashboard-card h5{

font-weight:700;

margin-bottom:10px;

}

.dashboard-card p{

margin:0;

font-size:15px;

}

/* Journey Section */

.journey-card{

background:#ffffff;

border-radius:15px;

padding:30px 20px;

text-align:center;

position:relative;

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

transition:.3s;

height:100%;

}

.journey-card:hover{

transform:translateY(-8px);

}

.journey-number{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

width:35px;

height:35px;

background:#b30000;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-weight:bold;

}

.journey-card i{

font-size:42px;

color:#ff9800;

margin:20px 0;

}

.journey-card h4{

font-size:20px;

font-weight:700;

margin-bottom:10px;

color:#003366;

}


/* Latest Guides */

.guide-card{

background:#fff;

border-radius:15px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.guide-card:hover{

transform:translateY(-8px);

}

.guide-card img{

height:240px;

width:100%;

object-fit:cover;

}

.guide-content{

padding:25px;

}

.guide-content h4{

font-weight:700;

margin:15px 0;

color:#003366;

}

.guide-content p{

font-size:15px;

margin-bottom:20px;

}

/* WHY US */

.feature-box{

background:#fff;

padding:35px 25px;

text-align:center;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.feature-box:hover{

transform:translateY(-10px);

}

.feature-icon{

width:80px;

height:80px;

margin:auto;

background:#b30000;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:20px;

}

.feature-icon i{

color:#fff;

font-size:32px;

}

.feature-box h4{

font-weight:700;

margin-bottom:15px;

color:#003366;

}

.feature-box p{

margin:0;

font-size:15px;

line-height:1.8;

}

/* YouTube Section */

.video-card{

background:#ffffff;

border-radius:15px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.video-card:hover{

transform:translateY(-8px);

}

.video-card h5{

font-weight:700;

margin-bottom:10px;

color:#003366;

}

.help-center{

background:#f8f9fc;

}

.help-card{

background:#fff;

padding:35px 25px;

border-radius:20px;

text-align:center;

height:100%;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.help-card:hover{

transform:translateY(-10px);

}

.help-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:20px;

border-radius:50%;

background:#b30000;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:30px;

}

.help-card h4{

font-weight:700;

margin-bottom:15px;

}

.help-card h3{

color:#003366;

font-weight:700;

margin-bottom:20px;

}

/*==========================
FOOTER
===========================*/

.footer{

background:#001f3f;

padding:70px 0 25px;

color:#ffffff;

}

.footer-logo{

width:210px;

margin-bottom:20px;

}

.footer h3{

font-weight:700;

margin-bottom:20px;

}

.footer h4{

font-size:20px;

margin-bottom:25px;

position:relative;

}

.footer h4:after{

content:"";

position:absolute;

left:0;

bottom:-10px;

width:50px;

height:3px;

background:#ff9800;

}

.footer p{

line-height:1.9;

color:#d6d6d6;

}

.footer ul{

padding:0;

margin:0;

list-style:none;

}

.footer ul li{

margin-bottom:12px;

}

.footer ul li a{

color:#d6d6d6;

text-decoration:none;

transition:.3s;

}

.footer ul li a:hover{

padding-left:8px;

color:#ff9800;

}

.footer-social{

margin-top:25px;

}

.footer-social a{

display:inline-flex;

align-items:center;

justify-content:center;

width:42px;

height:42px;

background:rgba(255,255,255,.08);

border-radius:50%;

margin-right:10px;

color:#fff;

transition:.3s;

font-size:18px;

}

.footer-social a:hover{

background:#ff9800;

transform:translateY(-5px);

}

.footer hr{

margin:45px 0 20px;

border-color:rgba(255,255,255,.15);

}

.copyright{

margin:0;

color:#bfbfbf;

}

.made{

font-size:18px;

font-weight:600;

color:#ff9800;

margin:0;

}

/* WhatsApp */

.whatsapp-btn{

position:fixed;

right:20px;

bottom:90px;

width:58px;

height:58px;

border-radius:50%;

background:#25D366;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:28px;

text-decoration:none;

z-index:999;

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

}

/* Back To Top */

#topBtn{

position:fixed;

right:20px;

bottom:20px;

width:52px;

height:52px;

border:none;

border-radius:50%;

background:#b30000;

color:#fff;

font-size:20px;

display:none;

cursor:pointer;

z-index:999;

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

}

#topBtn:hover{

background:#ff9800;

}

/*==================================================
INNER PAGE HERO
==================================================*/

.breadcrumb-section{

background:#f8f9fa;

padding:12px 0;

border-bottom:1px solid #ececec;

}

.breadcrumb a{

color:#003366;

text-decoration:none;

font-weight:500;

}

.inner-hero{

position:relative;

background:linear-gradient(rgba(0,30,60,.82),
rgba(0,30,60,.82)),
url('../images/battery-car-banner.jpg');

background-size:cover;

background-position:center;

padding:90px 0;

overflow:hidden;

}

.hero-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

}

.page-badge{

display:inline-block;

background:#ff9800;

padding:8px 18px;

border-radius:50px;

color:#fff;

font-weight:600;

margin-bottom:20px;

}

.inner-hero h1{

color:#fff;

font-size:52px;

font-weight:700;

line-height:1.2;

margin-bottom:20px;

}

.inner-hero h1 span{

display:block;

color:#ff9800;

}

.inner-hero p{

font-size:18px;

color:#f2f2f2;

line-height:1.8;

margin-bottom:30px;

max-width:650px;

}

.article-meta{

display:flex;

gap:30px;

flex-wrap:wrap;

margin-bottom:35px;

color:#fff;

font-size:15px;

}

.article-meta i{

color:#ff9800;

margin-right:8px;

}

.hero-buttons .btn{

padding:14px 28px;

border-radius:40px;

margin-right:15px;

font-weight:600;

}

.hero-img{

animation:floatImage 5s ease-in-out infinite;

max-height:420px;

}

@keyframes floatImage{

0%{transform:translateY(0);}

50%{transform:translateY(-10px);}

100%{transform:translateY(0);}

}

@media(max-width:991px){

.inner-hero{

padding:60px 0;

text-align:center;

}

.inner-hero h1{

font-size:30px;

}

.article-meta{

justify-content:center;

gap:15px;

}

.hero-img{

margin-top:40px;

max-height:300px;

}

}

<style>
.navbar{
background:#d50000;
box-shadow:0 2px 12px rgba(0,0,0,.08);
padding:8px 0;
}

.navbar-brand img{
height:60px;
}

.navbar-nav .nav-link{
font-size:16px;
font-weight:600;
color:#fff;
padding:12px 18px;
transition:.3s;
}

.navbar-nav .nav-link:hover{
color:#fff;
}

.dropdown-menu{
border:none;
box-shadow:0 5px 20px rgba(0,0,0,.12);
}

.dropdown-item:hover{
background:#d50000;
color:#fff;
}

.btn-contact{

background:#d50000;
color:#fff;
padding:10px 22px;
border-radius:30px;
font-weight:bold;
text-decoration:none;

}

.btn-contact:hover{

background:#b10000;
color:#fff;

}

.sticky-top{

z-index:9999;

}

body{
font-family:Arial,Helvetica,sans-serif;
background:#f5f5f5;
color:#333;
line-height:1.8;
}

h1,h2,h3{
font-weight:700;
}

.page-title{
color:#b30000;
margin-top:20px;
}

.section-title{
color:#003366;
border-left:5px solid #ff9800;
padding-left:10px;
margin-top:40px;
margin-bottom:20px;
}

.info-box{
background:#fff;
padding:25px;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,.08);
margin-bottom:30px;
}

.alert-box{
background:#fff7e8;
padding:20px;
border-left:5px solid orange;
border-radius:5px;
margin-top:20px;
}

.btn-book{
background:#b30000;
color:#fff;
padding:12px 25px;
font-size:18px;
font-weight:bold;
border-radius:5px;
text-decoration:none;
}

.btn-book:hover{
background:#8f0000;
color:#fff;
}

.hero-slider img{
height:450px;
object-fit:cover;
}

.breadcrumb{
background:#fff;
padding:10px;
margin-top:20px;
}

.icon-list li{
margin-bottom:12px;
}

.icon-list i{
color:#d60000;
margin-right:10px;
}

@media(max-width:768px){

.hero-slider img{
height:240px;
}

.page-title{
font-size:28px;
}


</style>

/* Target your header or navigation container */
header, .navbar {
    position: relative; /* REQUIRED for z-index to work */
    z-index: 9999;     /* Keeps the header on top of the slider */
}

/* Ensure the submenu list itself is also layered high */
.navbar .submenu, .navbar ul li ul {
    position: absolute;
    z-index: 10000;    /* Slightly higher than the header */
}

/* Target your hero slider container to sit lower */
.hero-slider, #slider-container {
    position: relative;
    z-index: 1;        /* Low stacking index */
}