/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:200vh;
    overflow-x:hidden;
    background:linear-gradient(180deg,#f8fafc,#ffffff) !important;
}

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.top-bar{
    position:fixed;
    top:0;
    width:100%;
    background:#D1671C;
    color:white;
    z-index:2000;
    transition:transform 0.4s ease;
}

.top-bar.hide{
    transform:translateY(-100%);
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}
/* TOP BAR LINKS */
.top-links{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    align-items:center;
}

/* LINKS STYLE */
.top-links a{
    color:white;
    text-decoration:none;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:6px;
    transition:0.3s;
}

/* HOVER EFFECT */
.top-links a:hover{
    color:#ffe0c2;
}

/* SOCIAL ICONS */
.social-icons{
    display:flex;
    gap:12px;
    font-size:18px;
}

.social-icons i{
    cursor:pointer;
    transition:0.3s;
}

.social-icons i:hover{
    color:#ffe0c2;
}

/* RESPONSIVE */
@media(max-width:768px){
    .top-links{
        display:none; /* keeps top bar clean on mobile */
    }
}
.navbar{
    position:fixed;
    top:50px;
    width:100%;
    z-index:1500;
    transition:all 0.4s ease;
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.navbar.transparent{
    background:transparent;
}

.navbar.scrolled{
    top:0;
    background:#ffffff;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* LOGO */
.brand img{
    width:190px;
}

/* NAV LINKS */
.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    text-decoration:none;
    font-weight:500;
    font-size:15px;
}

/* COLORS */
.navbar.transparent .nav-links a{
    color:black;
   
}
/* .navbar.transparent{
 padding-top: 33px !important;
}; */


.navbar.scrolled .nav-links a{
    color:#0f172a;
}

.dropdown{
    position:absolute;
    top:35px;
    left:0;
    background:white;
    width:180px;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.3s;
    border-radius:6px;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.dropdown a{
    display:block;
    padding:10px;
    color:#0f172a;
}

.dropdown a:hover{
    background:#f1f5f9;
}

.nav-links li:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}


.hamburger{
    display:none;
    width:28px;
    height:22px;
    position:relative;
    cursor:pointer;
    z-index:2000;
}

.hamburger span{
    position:absolute;
    width:100%;
    height:3px;
    background:#111;
    border-radius:5px;
    transition:0.4s ease;
}

.hamburger span:nth-child(1){ top:0; }
.hamburger span:nth-child(2){ top:9px; }
.hamburger span:nth-child(3){ top:18px; }

.hamburger.active span:nth-child(1){
    transform:rotate(45deg);
    top:9px;
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg);
    top:9px;
}

.nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(6px);
    opacity:0;
    pointer-events:none;
    transition:0.4s;
    z-index:1400;
}

.nav-overlay.active{
    opacity:1;
    pointer-events:auto;
}

@media(max-width:900px){

    .navbar{
        top:0;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:0;
        width:280px;
        height:100vh;
        background:white;
        flex-direction:column;
        padding:80px 25px;
        transform:translateX(100%);
        transition:0.4s;
        z-index:1600;
    }

    .nav-links.active{
        transform:translateX(0);
    }

    .nav-links li{
        margin-bottom:18px;
    }

    .nav-links a{
        font-size:18px;
        color:black !important;
    }

    .hamburger{
        display:block;

    }
    .hamburger span{
        background-color: #32ACC4 !important;
    }


    .dropdown{
        position:static;
        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
    }

    .nav-links li.active .dropdown{
        display:block;
    }
    .navbar.transparent{
 padding-top: 33px !important;
};
}

.hero-carousel{
    position:relative;
    height:100vh;
    width:100%;
    overflow:hidden;
}

/* SLIDES */
.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.15);
    transition:opacity 1s ease, transform 6s ease;
}

.slide.active{
    opacity:1;
    transform:scale(1);
}

/* OVERLAY */
.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.75));
    z-index:1;
}

/* CONTENT */
.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    z-index:2;
    max-width:800px;
}

.hero-content h1{
    font-size:54px;
    margin-bottom:15px;
}

.hero-content p{
    font-size:18px;
    opacity:0.9;
    margin-bottom:25px;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.btn{
    padding:12px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.btn.primary{
    background:#D1671C;
    color:white;
}

.btn.primary:hover{
    background:#16a34a;
}

.btn.secondary{
    border:1px solid white;
    color:white;
}

.btn.secondary:hover{
    background:white;
    color:black;
}

.thumbs{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:15px;
    z-index:3;
}

.thumb{
    width:70px;
    height:70px;
    border-radius:50%;
    overflow:hidden;
    border:2px solid rgba(255,255,255,0.4);
    cursor:pointer;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.thumb.active{
    border:2px solid #22c55e;
    transform:scale(1.2);
}

@media(max-width:768px){

.hero-content h1{
    font-size:32px;
}

.hero-content p{
    font-size:15px;
}

.hero-buttons{
    flex-direction:column;
}

.thumb{
    width:55px;
    height:55px;
}

}
/* website color codes
#32ACC4
:#D1671C */


.mt-trending-section{
    padding:100px 0;
    background:linear-gradient(180deg,#ffffff,#f8faf9);
}

.mt-trending-section .mt-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:28px;
}

.mt-trending-title{
    grid-column:1 / -1;
    text-align:center;
    font-size:40px;
    font-weight:600;
    color:#111827;
    letter-spacing:-0.5px;
}

.mt-trending-subtitle{
    grid-column:1 / -1;
    text-align:center;
    color:#6b7280;
    margin-top:8px;
    margin-bottom:40px;
    font-size:15px;
}
.mt-tour-card{
    display:flex;
    border-radius:20px;
    overflow:hidden;

    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(10px);

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    transition:all 0.35s ease;
    position:relative;
}

.mt-tour-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* IMAGE */
.mt-tour-image{
    width:42%;
    overflow:hidden;
}

.mt-tour-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.05);
    transition:0.5s ease;
}

.mt-tour-card:hover .mt-tour-image img{
    transform:scale(1.15);
}

/* CONTENT */
.mt-tour-content{
    width:58%;
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.mt-price-badge{
    display:inline-block;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:white;
    padding:6px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:500;
    width:max-content;
    margin-bottom:10px;
    box-shadow:0 6px 15px rgba(34,197,94,0.25);
}

/* TITLE */
.mt-tour-heading{
    font-size:22px;
    font-weight:600;
    color:#111827;
    margin-bottom:8px;
}

/* DESCRIPTION */
.mt-tour-desc{
    font-size:14px;
    color:#6b7280;
    line-height:1.6;
    margin-bottom:12px;
}

/* META */
.mt-tour-meta{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    font-size:13px;
    color:#6b7280;
    margin-bottom:16px;
}

.mt-tour-meta i{
    color:#32ACC4;
}

.mt-tour-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;
    border-radius:50px;
    text-decoration:none;

    font-size:14px;
    font-weight:500;

    color:white;
    background:#D1671C ;

    transition:0.3s ease;
    width:max-content;
}

.mt-tour-btn:hover{
    background:linear-gradient(135deg,#22c55e,#16a34a);
    box-shadow:0 10px 25px rgba(34,197,94,0.25);
}

@media(max-width:900px){

    .mt-trending-section .mt-container{
        grid-template-columns:1fr;
    }

    .mt-tour-card{
        flex-direction:column;
    }

    /* IMAGE BALANCE */
    .mt-tour-image{
        width:100%;
        height:200px;
    }

    .mt-tour-image img{
        height:100%;
    }

    .mt-tour-content{
        width:100%;
        padding:18px;
    }

    .mt-trending-title{
        font-size:28px;
    }

    .mt-tour-heading{
        font-size:18px;
    }

    .mt-tour-desc{
        font-size:13px;
    }

    .mt-tour-meta{
        font-size:12px;
    }

    .mt-tour-btn{
        width:100%;
        text-align:center;
    }
}

.mt-kashmir-packages{
    padding: 0;
    background:#f8faf9;
}

/* CONTAINER */
.mt-kashmir-packages .mt-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:28px;
}

/* TITLE */
.mt-pack-title{
    grid-column:1 / -1;
    text-align:center;
    font-size:38px;
    color:#111827;
    font-weight:600;
}

.mt-pack-subtitle{
    grid-column:1 / -1;
    text-align:center;
    color:#6b7280;
    margin-bottom:40px;
}

.mt-pack-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.35s ease;
}

.mt-pack-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* IMAGE */
.mt-pack-img{
    position:relative;
    height:220px;
    overflow:hidden;
}

.mt-pack-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.mt-pack-card:hover .mt-pack-img img{
    transform:scale(1.1);
}

.mt-pack-tag{
    position:absolute;
    top:15px;
    left:15px;
    background:#FF4B4F;
    color:white;
    padding:6px 12px;
    font-size:12px;
    border-radius:50px;
    font-weight:500;
}

.mt-pack-tag.alt{
    background:#32ACC4;
}

.mt-pack-content{
    padding:20px;
}


.mt-pack-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.mt-pack-top h3{
    font-size:20px;
    color:#111827;
}

.mt-pack-rating{
    background:#D1671C;
    color:white;
    padding:4px 10px;
    border-radius:50px;
    font-size:12px;
}


.mt-pack-meta{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    font-size:13px;
    color:#6b7280;
    margin:12px 0;
}

.mt-pack-meta i{
    color:#32ACC4;
}


.mt-pack-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
}

/* PRICE */
.mt-pack-price{
    font-size:16px;
}

.mt-pack-price del{
    color:#9ca3af;
    margin-right:6px;
}

.mt-pack-price span{
    color:#FF4B4F;
    font-weight:600;
}

/* BUTTON */
.mt-pack-btn{
    background:#D1671C;
    color:white;
    padding:10px 16px;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.mt-pack-btn:hover{
    background:#FF4B4F;
}

@media(max-width:900px){

.mt-kashmir-packages .mt-container{
    grid-template-columns:1fr;
}

.mt-pack-title{
    font-size:28px;
}

.mt-pack-img{
    height:200px;
}

}

.zv_ultra_yatra{
    padding:75px 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.zv_ultra_container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

.zv_ultra_head{
    text-align:center;
    margin-bottom:40px;
}

.zv_ultra_head h2{
    font-size:36px;
    color:#111827;
}

.zv_ultra_head p{
    color:#6b7280;
}

.zv_ultra_viewport{
    overflow:hidden;
    width:100%;
    border-radius:20px;
}

/* TRACK */
.zv_ultra_track{
    display:flex;
    transition:transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* CARD */
.zv_ultra_card{
    flex:0 0 100%;
    display:flex;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    transform:scale(0.95);
    transition:0.5s ease;
}


.zv_ultra_card.active{
    transform:scale(1);
}

/* IMAGE */
.zv_ultra_img{
    width:45%;
    position:relative;
}

.zv_ultra_img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* TAG */
.zv_tag{
    position:absolute;
    top:15px;
    left:15px;
    padding:6px 12px;
    color:#fff;
    font-size:12px;
    border-radius:50px;
}

.zv_tag.red{background:#FF4B4F;}
.zv_tag.blue{background:#32ACC4;}
.zv_tag.orange{background:#D1671C;}

/* BODY */
.zv_ultra_body{
    width:55%;
    padding:22px;
}

.zv_ultra_body h3{
    font-size:22px;
    margin-bottom:10px;
}

.zv_ultra_body p{
    color:#6b7280;
    font-size:14px;
}

/* META */
.zv_meta{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin:15px 0;
    font-size:13px;
    color:#6b7280;
}

.zv_meta i{
    color:#32ACC4;
}

/* FOOTER */
.zv_footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* PRICE */
.zv_price{
    font-size:20px;
    font-weight:600;
    color:#D1671C;
}

.zv_price small{
    display:block;
    font-size:12px;
    color:#6b7280;
}

/* BUTTON */
.zv_btn{
    padding:10px 18px;
    border-radius:50px;
    background:linear-gradient(135deg,#32ACC4,#D1671C);
    color:#fff;
    text-decoration:none;
}

@media(max-width:900px){

.zv_ultra_card{
    flex-direction:column;
}

.zv_ultra_img{
    width:100%;
    height:200px;
}

.zv_ultra_body{
    width:100%;
}

.zv_ultra_head h2{
    font-size:24px;
}

}

.amr_promax_wrap_x99{
    padding:100px 0;
    background:linear-gradient(180deg,#f8fafc,#ffffff);
}

.amr_promax_container_x99{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.amr_promax_head_x99{
    text-align:center;
    margin-bottom:40px;
}

.amr_promax_head_x99 h2{
    font-size:36px;
    color:#111827;
}

.amr_promax_head_x99 p{
    color:#6b7280;
}


.amr_promax_grid_x99{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* CARD */
.amr_promax_card_x99{
    display:flex;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.amr_promax_card_x99:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 80px rgba(0,0,0,0.12);
}

/* IMAGE */
.amr_promax_img_x99{
    width:42%;
    position:relative;
}

.amr_promax_img_x99 img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* TAGS */
.amr_tag_x99{
    position:absolute;
    top:15px;
    left:15px;
    padding:6px 12px;
    border-radius:50px;
    font-size:12px;
    color:#fff;
}

.amr_tag_x99.danger{background:#FF4B4F;}
.amr_tag_x99.premium{background:#32ACC4;}

/* BODY */
.amr_promax_body_x99{
    width:58%;
    padding:18px;
}

/* RATING */
.amr_rating_x99{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    color:#f59e0b;
    margin-bottom:8px;
}

.amr_rating_x99 span{
    color:#6b7280;
    font-size:12px;
}

/* TITLE */
.amr_promax_body_x99 h3{
    font-size:18px;
    margin-bottom:6px;
    color:#111827;
}

/* LOCATION */
.amr_location_x99{
    font-size:13px;
    color:#32ACC4;
    margin-bottom:10px;
}

.amr_location_x99 i{
    color:#32ACC4;
}

/* DESCRIPTION */
.amr_promax_body_x99 p{
    font-size:13px;
    color:#6b7280;
}

/* FEATURES */
.amr_features_x99{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:12px 0;
    font-size:12px;
    color:#6b7280;
}

.amr_features_x99 i{
    color:#32ACC4;
}

/* FOOTER */
.amr_footer_x99{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* PRICE */
.amr_price_x99{
    font-size:18px;
    font-weight:600;
    color:#D1671C;
}

.amr_price_x99 small{
    display:block;
    font-size:11px;
    color:#6b7280;
}

/* BUTTON */
.amr_btn_x99{
    padding:9px 14px;
    border-radius:50px;
    background:linear-gradient(135deg,#32ACC4,#D1671C);
    color:#fff;
    text-decoration:none;
    font-size:13px;
    display:flex;
    gap:6px;
    align-items:center;
}

@media(max-width:900px){

.amr_promax_grid_x99{
    grid-template-columns:1fr;
}

.amr_promax_card_x99{
    flex-direction:column;
}

.amr_promax_img_x99{
    width:100%;
    height:200px;
}

.amr_promax_body_x99{
    width:100%;
}

.amr_promax_head_x99 h2{
    font-size:24px;
}

}

.scroll-top-btn{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;
    cursor: pointer;

    background: linear-gradient(135deg, #32ACC4, #D1671C);
    color: white;
    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s;

    z-index: 99999;
}

/* SHOW BUTTON */
.scroll-top-btn.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* HOVER */
.scroll-top-btn:hover{
    transform: scale(1.1);
    background: linear-gradient(135deg, #D1671C, #FF4B4B);
}
.magazine-gallery{
    padding:100px 0;
    background:linear-gradient(180deg,#ffffff,#f8fafc);
    text-align:center;
    overflow:hidden;
}

.mag-title{
    font-size:36px;
    margin-bottom:60px;
    color:#111827;
    font-weight:600;
}

/* CONTAINER */
.mag-container{
    position:relative;
    width:100%;
    max-width:950px;
    height:420px;
    margin:auto;

    display:flex;
    justify-content:center;
    align-items:center;
    perspective:2000px;
}

/* PAGE BASE */
.mag-page{
    position:absolute;
    width:300px;
    height:380px;
    border-radius:16px;
    overflow:hidden;
    background:#fff;

    box-shadow:0 25px 60px rgba(0,0,0,0.15);

    transition:all 1s cubic-bezier(0.77, 0, 0.175, 1);
}

/* IMAGE */
.mag-page img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* DEFAULT STATE */
.mag-page.center{
    transform:translateX(0) scale(1);
    z-index:3;
}

.mag-page.left,
.mag-page.right{
    transform:translateX(0) scale(0.9);
    opacity:0;
    z-index:1;
}

.mag-container.open .center{
    transform:translateX(0) scale(1.05);
}

.mag-container.open .left{
    transform:translateX(-320px) rotateY(25deg);
    opacity:1;
    z-index:2;
}

.mag-container.open .right{
    transform:translateX(320px) rotateY(-25deg);
    opacity:1;
    z-index:2;
}

.mag-container.full .left{
    transform:translateX(-420px) rotateY(0deg) scale(1);
}

.mag-container.full .center{
    transform:translateX(0) scale(1);
}

.mag-container.full .right{
    transform:translateX(420px) rotateY(0deg) scale(1);
}

/* RESPONSIVE */
@media(max-width:768px){

.mag-container{
    height:320px;
}

.mag-page{
    width:200px;
    height:280px;
}

.mag-container.open .left{
    transform:translateX(-180px) rotateY(20deg);
}

.mag-container.open .right{
    transform:translateX(180px) rotateY(-20deg);
}

.mag-container.full .left{
    transform:translateX(-220px);
}

.mag-container.full .right{
    transform:translateX(220px);
}

.mag-title{
    font-size:26px;
}

}
.xrv_review_section_991 {
  padding: 80px 20px;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  text-align: center;
}

.xrv_review_container_991 {
  max-width: 900px;
  margin: auto;
}

.xrv_review_header_991 h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.xrv_review_header_991 p {
  color: #94a3b8;
  margin-bottom: 40px;
}

/* SLIDER */
.xrv_review_slider_991 {
  overflow: hidden;
  position: relative;
}

.xrv_review_track_991 {
  display: flex;
  transition: transform 0.6s ease;
}

/* CARD */
.xrv_review_card_991 {
  min-width: 100%;
  padding: 40px 25px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* IMAGE */
.xrv_review_img_991 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #38bdf8;
}

/* TEXT */
.xrv_review_card_991 p {
  font-size: 16px;
  color: #e2e8f0;
  margin-bottom: 15px;
  line-height: 1.6;
}

.xrv_review_card_991 h4 {
  margin: 0;
  font-size: 18px;
}

.xrv_review_card_991 span {
  font-size: 13px;
  color: #94a3b8;
}
/* #32ACC4
:#D1671C */
/* #FF4B4B */