@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Epunda+Slab:ital,wght@0,300..900;1,300..900&family=Gruppo&family=Inconsolata:wdth,wght@112.5,200..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Macondo&family=Michroma&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Oswald:wght@200..700&family=Playpen+Sans:wght@100..800&family=Protest+Revolution&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sedan+SC&family=Tapestry&display=swap');

body{
	
}

img{
    max-width:100%;
}

.header-transparent {
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #000;
}



.header-transparent a,
.header-transparent .btn {
    color: #000;
    /*border:1px solid #4296BC;*/
}

.header-transparent img {
    max-height: 100px;
}


/* Base Button */
.water-btn {
    position: relative;
    overflow: hidden;
    padding: 10px 26px;
    font-weight: 600;
    transition: color 0.4s ease;
    z-index: 1;
}

/* Water Layer */
.water-btn::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    transition: bottom 0.45s ease;
    z-index: -1;
    border-radius: 50%;
}

/* Hover Animation */
.water-btn:hover::before {
    bottom: 0;
    border-radius: 0;
}

/* TEXT COLOR CHANGE */
.water-btn:hover {
    color: #fff !important;
}

/* Light Button */
.water-light {
    color: #000;
    background: #FED54D;
    border: 2px solid #FED54D;
}

/* Green Button */
.water-green {
    color: #fff;
    background: #4296BC;
    border: 2px solid #469FB8;
}

/* Green hover water */
.water-green::before {
    background:#B5CD65;
}

/* Light hover water */
.water-light::before {
    background:#B5CD65;
}
\.hero-text {
    max-width: 620px;
}

/* Main Title */
.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
}

/* Price Highlight */
.hero-title span {
    display: inline-block;
    margin-top: 10px;
    color: #00e676;
    font-size: 46px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    margin-top: 15px;
    color: rgba(255,255,255,0.9);
}

/* Trust Points */
.hero-points {
    list-style: none;
    padding: 0;
    margin-top: 18px;
}

.hero-points li {
    font-size: 15px;
    margin-bottom: 6px;
    color: #fff;
}

/* Button spacing */
.hero-text .btn {
    padding: 14px 32px;
    border-radius: 50px;
}

.text-end{
    text-align:right;
}

/* SERVICE WRAPPER */
.services-div {
    text-align: center;
    padding: 35px 20px;
    position: relative;
    transition: all 0.4s ease;
}

/* BEFORE – subtle base underline */
.services-div::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #ddd;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

/* AFTER – glow accent (hidden initially) */
.services-div::after {
    content: "";
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(26, 127, 90, 0.12);
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

/* IMAGE */
.services-div img {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: block;
    transition: all 0.4s ease;
}

/* TEXT */
.recommended-description h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.recommended-description p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    max-width: 260px;
    margin: 0 auto;
}

/* HOVER EFFECTS */
.services-div:hover {
    transform: translateY(-8px);
}

/* underline grows */
.services-div:hover::before {
    width: 70px;
    background: #1a7f5a;
}

/* glow appears */
.services-div:hover::after {
    width: 160px;
    height: 160px;
    opacity: 1;
}

/* image pop */
.services-div:hover img {
    transform: translateY(-6px) scale(1.08);
}

/* title color */
.services-div:hover h5 {
    color: #1a7f5a;
}

/* MOBILE TUNING */
@media (max-width: 767px) {
    .services-div {
        padding: 25px 15px;
    }

    .services-div::after {
        display: none;
    }
}

.home4_section_area2{
    padding:70px 0;
}

.centertitle {
    text-align: center;
    position: relative;
}

/* Title styling */
.centertitle h2 {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #111;
    position: relative;
    padding: 0 20px; /* spacing for the lines */
}



.centertitle h2::before {
    left: -70px; /* space from the title */
}

.centertitle h2::after {
    right: -70px; /* space from the title */
}

/* Responsive tuning */
@media (max-width: 767px) {
    .centertitle h2::before,
    .centertitle h2::after {
        width: 40px;
        left: -50px;
        right: -50px;
    }

    .centertitle h2 {
        font-size: 24px;
        padding: 0 15px;
    }
}

/* Section wrapper relative for background */
.home4_section_area2 {
    position: relative;
    padding: 70px 0;
    overflow: hidden; /* hide shapes overflow */
    background: #f9fafb;
}

/* COMMON SHAPE STYLE */
.home4_section_area2 .bg-shape {
    position: absolute;
    border-radius: 50%; /* circle by default */
    opacity: 0.15;
    z-index: 0; /* behind content */
    animation: float 20s linear infinite;
}

/* FLOATING ANIMATION */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* DIFFERENT SHAPES */
.bg-shape.shape1 {
    width: 100px;
    height: 100px;
    background: #1a7f5a;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.bg-shape.shape2 {
    width: 150px;
    height: 150px;
    background: #e0f2eb;
    top: 50%;
    left: 80%;
    animation-duration: 30s;
}

.bg-shape.shape3 {
    width: 80px;
    height: 80px;
    background: #1a7f5a;
    top: 70%;
    left: 30%;
    animation-duration: 22s;
}

.bg-shape.shape4 {
    width: 120px;
    height: 120px;
    background: #e0f2eb;
    top: 20%;
    left: 60%;
    animation-duration: 28s;
}

/* Ensure content is above shapes */
.home4_section_area2 .container,
.home4_section_area2 .row {
    position: relative;
    z-index: 1;
}

/* SECTION TITLE */
.offerpackage h1 {
    text-align: center;
    font-size: 30px;
     font-family: "Protest Revolution", sans-serif;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

/* PACKAGE CARD */
.offr {
    margin-bottom: 30px;
}

.fblock_thumb {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 15px;
    position: relative;
    min-height:635px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fblock_thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.fblock_thumb img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
}

/* DISCOUNT BADGE */
.offfmy {
    position: absolute;
    top: 15px;
    left: 15px;
    background:#4195BB;
    color: #fff;
    padding: 5px 12px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 14px;
}

/* TITLE */
.fblock_thumb h6 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px 0;
    color: #111;
}

/* RATINGS */
.artting {
    font-size: 14px;
    color: #4195BB;
    font-weight: 600;
}

.artting .red {
    color: #f39c12;
}

/* PRICE */
.artting2 {
    text-align: right;
    font-size: 14px;
}

.artting2 .cut {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.artting2 .peradult {
    font-weight: 600;
    color: #F16026;
}

/* CLOCK / LOCATION DETAILS */
.clock-ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    font-size: 13px;
    margin-bottom: 15px;
}

.clock-ul li p {
    margin: 0;
    display: flex;
    align-items: center;
    color: #555;
}

.clock-ul li p i {
    color: #4195BB;
    margin-right: 5px;
}

/* FACILITY ICONS */
.facilit-icon {
    text-align: center;
    margin-top: 10px;
}

.facilit-icon i {
    font-size: 20px;
    color: #BACE64;
    margin-bottom: 5px;
}

.facilit-icon p {
    font-size: 13px;
    margin: 0;
    color: #555;
}

/* BUTTON */
.fblock_thumb button {
    width: 100%;
    background: #007bff;
    color: #fff;
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fblock_thumb button:hover {
    background: #159153;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .clock-ul {
        flex-direction: column;
        gap: 8px;
    }

    .artting2 {
        text-align: left;
        margin-top: 5px;
    }

    .offr {
        margin-bottom: 20px;
    }
}


.short-itenary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.short-itenary ul li {
    display: flex;
    align-items: center;
    /*gap: 6px;*/
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #000;
    padding: 4px 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.short-itenary ul li i {
    color:#4195BB;
    font-size: 14px;
}

.about-section {
    background: linear-gradient(
        rgba(88, 170, 60, 0.35),
        rgba(88, 170, 60, 0.35)
    ),
    url('/wp-content/uploads/2024/01/kashmir-bg.jpg') center/cover no-repeat;
    min-height: 520px;
}

/* TEXT */
.about-text {
    padding-left: 30px;
}

.small-title {
    font-style: italic;
    font-size: 16px;
    opacity: 0.9;
    color:#000;
}

.about-title {
    font-size: 36px;
     color:#000;
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
     color:#000;
    opacity: 0.95;
}

/* BUTTON */
.call-btn {
    background: #fff;
    color: #4c8f2f;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn:hover {
    background: #2f6f1f;
    color: #fff;
}

/* IMAGE */
.about-img img {
    border-radius: 24px;
}

/* ===== ANIMATED DOT LINES ===== */
.bg-line {
    position: absolute;
    border: 2px dashed rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: floatLines 12s linear infinite;
}

.line-1 {
    width: 220px;
    height: 220px;
    top: 40px;
    left: 60px;
}

.line-2 {
    width: 320px;
    height: 320px;
    bottom: 30px;
    right: 120px;
    animation-duration: 16s;
}

.line-3 {
    width: 160px;
    height: 160px;
    top: 120px;
    right: 60px;
    animation-duration: 10s;
}

@keyframes floatLines {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.6;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }
    .about-text {
        padding: 0 15px;
    }
    .navbar-brand img{
        width:238px !important;
    }
}

/* Sidebar Wrapper */
.siderbar {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* List Reset */
.siderbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Item */
.siderbar ul li {
    position: relative;
    padding: 12px 15px 12px 30px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    background: #f9f9f9;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* BEFORE – Accent Line */
.siderbar ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #1b7f5a; /* Kashmir green */
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

/* AFTER – Hover Background Slide */
.siderbar ul li::after {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1b7f5a, #3cb371);
    z-index: -1;
    transition: left 0.4s ease;
}

/* Hover Effects */
.siderbar ul li:hover {
    color: #fff;
    transform: translateX(5px);
}

.siderbar ul li:hover::before {
    transform: scaleY(1);
}

.siderbar ul li:hover::after {
    left: 0;
}

/* Last Item Margin Fix */
.siderbar ul li:last-child {
    margin-bottom: 0;
}
/* Section Wrapper */
.home4_section_area {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Center Title */
.home4_section_area .centertitle {
    text-align: center;
    margin-bottom: 35px;
}

.home4_section_area .centertitle h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* Title Underline */
.home4_section_area .centertitle h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Carousel Wrapper */
.home4_section_area .owl-carousel {
    padding: 20px 0;
}

/* Individual Logo Item */
.home4_section_area .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Box */
.home4_section_area .owl-item img {
    max-height: 80px;
    width: auto;
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* Hover Effect */
.home4_section_area .owl-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Owl Dots */
.home4_section_area .owl-dots {
    margin-top: 20px;
}

.home4_section_area .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.home4_section_area .owl-dot.active span {
    background: #1b7f5a;
    width: 20px;
    border-radius: 10px;
}

/* Mobile Optimisation */
@media (max-width: 767px) {
    .home4_section_area {
        padding: 40px 0;
    }

    .home4_section_area .centertitle h2 {
        font-size: 26px;
    }

    .home4_section_area .owl-item img {
        max-height: 60px;
    }
}

/* =========================
   FOOTER BASE
========================= */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    background-size: 300% 300%;
    animation: footerGradient 12s ease infinite;
    color: #eaeaea;
    overflow: hidden;
    font-size: 15px;
}

/* Animated Gradient */
@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Light Dots */
.footer::before,
.footer::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatGlow 8s infinite alternate ease-in-out;
}

.footer::before {
    top: -100px;
    left: -100px;
}

.footer::after {
    bottom: -100px;
    right: -100px;
    animation-delay: 4s;
}

@keyframes floatGlow {
    from { transform: translateY(0); }
    to { transform: translateY(40px); }
}

/* =========================
   FOOTER TOP
========================= */
.footer-top {
    padding: 70px 0 40px;
    position: relative;
    z-index: 2;
}

/* Headings */
.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #F16026;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Text & Icons */
.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer p i {
    color: #F16026;
    margin-right: 8px;
}

/* =========================
   FOOTER LINKS
========================= */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links {
    color: #dcdcdc;
    text-decoration: none;
    position: relative;
    padding-left: 18px;
    transition: all 0.3s ease;
}

/* Arrow Before Link */
.footer-links::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #F16026;
    transition: transform 0.3s ease;
}

.footer-links:hover {
    color: #ffffff;
    padding-left: 24px;
}

.footer-links:hover::before {
    transform: translateX(4px);
}

/* =========================
   SOCIAL ICONS
========================= */
.social-network {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
}

.social-network li a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    transition: all 0.4s ease;
}

/* Hover Glow */
.social-network li a:hover {
    background: #3cb371;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(60,179,113,0.6);
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    background: rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

.template-name {
    color: #F16026;
    font-weight: 600;
}

/* =========================
   MODAL ENHANCEMENT
========================= */
.modal-header {
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.modal-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.modal-header h2,
.modal-header button {
    position: relative;
    z-index: 2;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 767px) {
    .footer-top {
        padding: 50px 0 30px;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-network {
        justify-content: center;
    }
}


/* Show only on mobile */
@media (max-width: 767px) {
    .home-heroo {
        display: block;
    }
    
    .hero-content h1{
        font-size:30px;
    }
    
    .hero-title span{
        font-size:35px;
    }
}

/* Hide form on desktop */
.mobile-hero-form {
    /*display: none;*/
}

/* Show form only on mobile */
@media (max-width: 767px) {
    .mobile-hero-form {
        display: block;
    }
    .hero-overlay{
        background:transparent;
    }
    .water-btn{
        margin-bottom:5px;
    }
}


/* Call button */
.btn-call {
    border: none;
}



/* Hover */
.btn-call:hover,
.btn-quote:hover {
    opacity: 0.9;
}
@media (max-width: 767px) {

    /* Ratings + Price in one row */
    .fblock_thumb > .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .fblock_thumb > .row > div {
        width: 50%;
    }

    .artting {
        font-size: 13px;
    }

    .artting2 {
        text-align: right;
        font-size: 13px;
    }
}

.thankyoudiv{
    padding:120px 0;
}

/* Modal Base */
.travel-offer-modal .modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

/* Header */
.travel-modal-header {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 40px 25px;
  color: #fff;
  text-align: center;
}

.travel-modal-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.travel-modal-header * {
  position: relative;
  z-index: 2;
}

.travel-modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.travel-modal-header h2 span {
  color: #ffd200;
}

.travel-modal-header p {
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Close Button */
.travel-modal-close {
  color: #fff;
  opacity: 1;
  font-size: 28px;
}

/* Body */
.travel-modal-body {
  background: #f7f9fc;
  padding: 10px;
}

.travel-form-box {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.travel-form-box h3 {
  text-align: center;
  color: #004288;
  font-weight: 700;
  margin-bottom: 5px;
}

.travel-form-sub {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* Contact Form 7 Styling */
.travel-form-box input,
.travel-form-box textarea,
.travel-form-box select {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.travel-form-box input:focus,
.travel-form-box textarea:focus {
  border-color: #004288;
  box-shadow: none;
}

/* Submit Button */
.travel-form-box input[type="submit"] {
  background: #004288;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.travel-form-box input[type="submit"]:hover {
  background: #002d5a;
}

/* Footer */
.travel-modal-footer {
  background: #fff;
  border-top: 1px solid #eee;
  text-align: center;
}

.privacy-points {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.privacy-points li {
  font-size: 13px;
  color: #666;
}

/* Close Button */
.travel-close-btn {
  background: #ddd;
  border-radius: 20px;
  padding: 6px 18px;
}

.modal-footer{
    display:flex !important;
    justify-content:space-between !important;
}

.footer p a{
    color:#fff;
}

.footer-line{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-line i{
    min-width: 18px;
    margin-top: 4px;
}

.footer-text *{
    text-align:left;
    margin: 0;
    padding: 0;
}
.innerproducts{
    padding:100px 0;
}

.footer-text a{
    color:#fff;
}

/* HERO SECTION */
.kashmir-hero-section {
    position: relative;
    color: #fff;
}

/* TEXT AREA */
.kashmir-hero-text {
    margin-bottom: 20px;
}

.kashmir-hero-title {
    font-size: 48px;
    color:#000;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.kashmir-hero-title span {
    display: inline-block;
    color: #000;
    font-size: 36px;
    font-weight: 600;
    margin-top: 10px;
}

.kashmir-hero-description {
    font-size: 18px;
    color:#000;
    opacity: 0.9;
}

/* BUTTON */
.kashmir-hero-btn {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.kashmir-hero-btn:hover {
    background: #1e7e34;
    transform: translateY(-2px);
}

/* FORM BOX */
.kashmir-enquiry-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.kashmir-form-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .kashmir-hero-title {
        font-size: 32px;
    }

    .kashmir-hero-title span {
        font-size: 24px;
    }

    .kashmir-hero-description {
        font-size: 15px;
    }
}

label{
    color:#000;
}

/* Mobile Bottom Contact Bar */
.mobile-contact-bar {
    display: none;
}

@media (max-width: 768px) {

    .mobile-contact-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    .mobile-contact-bar a {
        flex: 1;
        text-align: center;
        padding: 14px 10px;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .mobile-contact-bar .call-btn {
        background: #F58E35;
        border-radius:0;
    }

    .mobile-contact-bar .whatsapp-btn {
        background: #008000;
    }
}

.package-actions .btn {
    font-weight: 600;
    padding: 10px 8px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 0;
}

.btn-call {
    background: #F58E35;
    color: #fff;
}

.btn-call:hover {
    background: #e68310;
    color: #fff;
}

.btn-whatsapp {
    background: #008000;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
}



.btn-quote:hover {
    background: #0069d9;
    color: #fff;
}

.navbar-brand img{
    width:340px;
}

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

.about-hero {
    background: #f8f9fa;
    padding: 14px 0;
}

.about-hero h1 {
    font-size: 40px;
    font-weight: 700;
}

.about-content h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.about-cta {
    background: #007bff;
    color: #fff;
    padding: 60px 0;
}

.about-cta h3 {
    font-size: 28px;
    font-weight: 600;
}

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

/* HERO */
.contact-hero {
    background: #f8f9fa;
    padding: 90px 0;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

/* CONTACT CARDS */
.contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 15px;
    display: block;
}

.contact-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* MAP */
.map-box {
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Section Background */
.thankyou-section {
    background: #f3f3f3;
    padding: 30px 0 120px;
}

/* Center Box */
.thankyou-box {
    text-align: center;
}

/* Main Heading (Purple Playful Look) */
.thank-title {
    font-size: 48px;
    font-weight: 700;
    color: #6f5bd4;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Subtitle */
.thank-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 45px;
}

/* Grey Rounded Call Box */
.call-box {
    background: #e9e9e9;
    padding: 22px 40px;
    border-radius: 60px;
    display: inline-block;
    margin-bottom: 40px;
    min-width: 70%;
}

/* Red Call Text */
.call-box h4 {
    color: #ff0000;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

/* Phone Icon */
.call-box i {
    margin-right: 8px;
}

/* Social Icons Container */
.social-icons {
    margin-bottom: 35px;
        margin-bottom: 35px;
    display: flex;
    justify-content: center;
}

/* Square Social Boxes */
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    margin: 0 8px;
    background: #ffffff;
    border: 1px solid #ddd;
    font-size: 22px;
    color: #444;
    border-radius: 6px;
    transition: 0.3s ease;
}

/* Hover Effect */
.social-icons a:hover {
    background: #6f5bd4;
    color: #fff;
    transform: translateY(-3px);
}

/* Back Button */
.btn-back {
    display: inline-block;
    background: #8e4c5f;
    color: #fff;
    padding: 14px 55px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Button Hover */
.btn-back:hover {
    background: #6f5bd4;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .thank-title {
        font-size: 34px;
    }

    .call-box {
        min-width: 100%;
        padding: 18px 20px;
    }

    .call-box h4 {
        font-size: 18px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .btn-back {
        padding: 12px 35px;
        font-size: 16px;
    }
}
.footer-payment-btn .btn {
    background-color: #ff6600;
    border: none;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s ease;
}

.footer-payment-btn .btn:hover {
    background-color: #e05500;
}

/* ============================================
   KASHMIR BANNER — Premium Hero CSS
   ============================================ */

/* --- Base Section --- */
.ksh-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

/* --- Background Image --- */
.ksh-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ksh-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.05);
    animation: ksh-zoomin 12s ease forwards;
}

@keyframes ksh-zoomin {
    from { transform: scale(1.08); }
    to   { transform: scale(1.00); }
}

/* --- Gradient Overlay (cinematic multi-stop) --- */
.ksh-banner__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            110deg,
            rgba(5, 20, 40, 0.82) 0%,
            rgba(10, 40, 60, 0.65) 45%,
            rgba(0, 0, 0, 0.15) 100%
        ),
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.55) 0%,
            transparent 50%
        );
}

/* --- Stage (content wrapper) --- */
.ksh-banner__stage {
    position: relative;
    z-index: 2;
}

/* --- Copy Block --- */
.ksh-banner__copy {
    padding: 100px 0 80px;
    animation: ksh-fadeslide 0.9s ease both;
}

@keyframes ksh-fadeslide {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Eyebrow Label --- */
.ksh-banner__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7dd3c8;
    border: 1px solid rgba(125, 211, 200, 0.4);
    border-radius: 2px;
    padding: 5px 14px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
    background: rgba(125, 211, 200, 0.08);
    animation: ksh-fadeslide 0.9s 0.1s ease both;
}

/* --- Headline --- */
.ksh-banner__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    animation: ksh-fadeslide 0.9s 0.2s ease both;
}

/* --- Price Tag inside headline --- */
.ksh-banner__price-tag {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 500;
    color: #4ecca3;
    margin-top: 8px;
    letter-spacing: 0.01em;
    text-shadow: 0 0 30px rgba(78, 204, 163, 0.5);
}

/* --- Lead Paragraph --- */
.ksh-banner__lead {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    max-width: 480px;
    margin-bottom: 30px;
    animation: ksh-fadeslide 0.9s 0.3s ease both;
}

/* --- Trust List --- */
.ksh-banner__trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: ksh-fadeslide 0.9s 0.4s ease both;
}

.ksh-banner__trust-item {
    font-size: 0.92rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    max-width: 340px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.ksh-banner__trust-item:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(78, 204, 163, 0.35);
}

.ksh-trust-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* --- CTA Button --- */
.ksh-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1db87a 0%, #0e9c67 100%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 6px;
    letter-spacing: 0.03em;
    box-shadow:
        0 4px 20px rgba(29, 184, 122, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    animation: ksh-fadeslide 0.9s 0.5s ease both;
}

.ksh-banner__cta:hover {
    background: linear-gradient(135deg, #22d48d 0%, #14b57a 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 28px rgba(29, 184, 122, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    color: #fff;
    text-decoration: none;
}

.ksh-banner__cta:active {
    transform: translateY(0);
}

.ksh-cta__icon {
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .ksh-banner__copy {
        padding: 80px 20px;
    }

    .ksh-banner__headline {
        font-size: 2.2rem;
    }

    .ksh-banner__trust-item {
        max-width: 100%;
    }

    .ksh-banner__lead {
        font-size: 0.97rem;
    }

    .ksh-banner__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ksh-banner__headline {
        font-size: 1.85rem;
    }
}

@media (min-width: 992px) {
    .mobile-sidebar {
        position: static !important;
        height: auto !important;
        width: auto !important;
        background: transparent !important;
        box-shadow: none !important;
    }
}

/* Mobile left slide */
@media (max-width: 991px) {

    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: #ffffff;
        z-index: 1050;
        padding: 20px;
        transition: 0.4s ease;
        overflow-y: auto;
        box-shadow: 2px 0 20px rgba(0,0,0,0.15);
    }

    .mobile-sidebar.active {
        left: 0;
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Common Mobile Button Styling */
.book-btn,
.call-btn,
.whatsapp-btn {
    width: 100%;
    padding: 12px 18px;
    font-weight: 600;
    border-radius: 0;
    color: #fff !important;
    text-align: center;
    transition: 0.3s ease;
    display: inline-block;
}

/* Book Now Button */
.book-btn {
    background-color: #007bff;
    border: none;
}

.book-btn:hover {
    background-color: #0069d9;
}

/* Call Now Button */
.call-btn {
    background-color: #F58E35;
    border: none;
}

.call-btn:hover {
    background-color: #e07c28;
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #008000;
    border: none;
}

.whatsapp-btn:hover {
    background-color: #006400;
}

.modal-header .close {
    margin:0 !important;
    padding:0 !important;
}

/* ===== MOBILE MENU STYLES (max-width: 991px) ===== */
@media (max-width: 991px) {

  .mobile-sidebar {
    background: linear-gradient(160deg, #0a1628 0%, #0d2444 60%, #0a3060 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    padding: 20px 16px 28px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);

  }

  /* Subtle snow/mountain texture feel */
  .mobile-sidebar::before {

    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(100, 180, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
  }

  .mobile-sidebar .navbar-nav {
    gap: 4px;
    display: flex;
    flex-direction: column;
  }

  /* Each nav item */
  .mobile-sidebar .nav-item {
    border-radius: 10px;
    overflow: hidden;
  }

  .mobile-sidebar .nav-link {
    color: rgba(220, 235, 255, 0.85) !important;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 12px 18px !important;
    border-radius: 10px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
  }

  /* Hover/Active state */
  .mobile-sidebar .nav-link:hover,
  .mobile-sidebar .nav-item.active .nav-link {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    padding-left: 24px !important;
  }



  /* Divider line between links */
  .mobile-sidebar .nav-item + .nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Book Now Button */
  .mobile-sidebar .book-btn {
    background: linear-gradient(135deg, #1a6fd4, #0a9ecc) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px;
    padding: 14px 18px !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(26, 111, 212, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    margin-top: 8px !important;
  }

  .mobile-sidebar .book-btn:hover {
    background: linear-gradient(135deg, #2279e8, #12b4e2) !important;
    box-shadow: 0 6px 24px rgba(26, 111, 212, 0.6);
    transform: translateY(-1px);
    padding-left: 18px !important; /* override the shift on hover */
  }

  /* Remove the left-bar effect from book button */
  .mobile-sidebar .nav-item:has(.book-btn) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 6px;
    padding-top: 6px;
  }

  .mobile-sidebar .nav-item:has(.book-btn) .nav-link::before {
    display: none;
  }
}

.pay-btn{
    background: linear-gradient(45deg,#6c5ce7,#8e7dff);
    color:#fff !important;
}

.navbar-light .navbar-nav .nav-link{
    /*color:#000 !important;*/
     font-family: 'Nunito Sans', sans-serif;
}

/* Mobile Social Top Bar */
.mobile-social-topbar{
    width:100%;
    background:#f8f9fa;
    padding:6px 0;
    display:none;
}

.mobile-social-icons{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
}

.mobile-social-icons li a{
    display:flex;
    align-items:center;
    justify-content:center;
}

.mobile-social-icons img{
    width:22px;
    height:22px;
    transition:0.3s;
}

.mobile-social-icons img:hover{
    transform:scale(1.15);
}


/* Show only on mobile */
@media (max-width:768px){

    .mobile-social-topbar{
        display:block;
    }

}
.mobile-social-topbar{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.find-us{
    font-size:14px;
    font-weight:600;
    color:#000;
    white-space:nowrap;
}

.mobile-social-icons{
    display:flex;
    list-style:none;
    padding:0;
    margin:0;
    gap:8px;
}

.mobile-social-icons img{
    width:20px;
    height:20px;
}