:root {
    --primary: #0354A6;
    --accent: #FEC20F;
    --light: #f8f8f8;
    --text: #333;
    }
    body {
    margin: 0;
    padding: 0%;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: var(--text);
    }
    /* HERO */
    .hero {
    position: relative;
    background: url('./images/compressed/backgroundkashmirtour.webp') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
    margin: 0;
    padding: 0;
    }
    .hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(rgba(3, 84, 166, 0.7), rgba(0, 0, 0, 0.6));
    z-index: 1;
    }
    .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    width: 100%;
    gap: 30px;
    color: #fff;
    margin: 0;
    padding: 0;
    }
    .hero-text { flex: 1; max-width: 50%; }
    .hero-text h1 { font-size: 48px; margin-bottom: 20px; color: #fff; }
    .hero-text p { font-size: 18px; line-height: 1.5; color: #eee; }
    /* FORM */
    .hero-form {
    max-width: 320px;
    margin: 20px auto;
    padding: 15px;
    background: #FEC20F; /* light background */
    border-radius: 20px;
    font-family: sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
    .hero-form h2 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: #0354A6;
    }
    .hero-form label {
    display: flex;
    align-items: center;
    background: white;
    padding: 6px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    }
    .hero-form label i {
    color: #0354A6;
    margin-right: 8px;
    font-size: 14px;
    min-width: 18px;
    }
    .hero-form label span {
    font-size: 14px;
    color: #333;
    flex: 1;
    }
    .hero-form input[type="text"],
    .hero-form input[type="email"],
    .hero-form input[type="tel"],
    .hero-form input[type="date"] {
    border: none;
    outline: none;
    flex: 1;
    padding: 3px;
    font-size: 11px;
    background: transparent;
    }
    .checkbox {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 12px;
    }
    .checkbox input {
    margin-right: 6px;
    }
    .checkbox i {
    color: green;
    margin-right: 4px;
    }
    .hero-form button {
    width: 100%;
    background: #0354A6;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    }
    .hero-form button i {
    margin-right: 5px;
    }
    .hero-form button:hover {
    background: #023f82;
    }
    .hero-form input[type="number"] {
    width: 100%;
    border: none;
    outline: none;
    padding: 6px;
    font-size: 14px;
    background: transparent;
    }
    /* Remove number input arrows for all browsers */
    .hero-form input[type=number]::-webkit-inner-spin-button,
    .hero-form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    }
    /* Optional: Style them a bit different */
    .hero-form label:nth-of-type(6),
    .hero-form label:nth-of-type(7) {
    background-color: #fefefe;
    border: 1px solid #ddd;
    }
    /* ✅ MOBILE-SPECIFIC OVERRIDES */
    @media (max-width: 480px) {
    .hero-form {
    padding: 12px;
    margin: 15px auto;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: none;
    text-align: center;
    }
    .hero-form h2 {
    font-size: 15px;
    }
    .hero-form label {
    flex-direction: row;
    padding: 5px 8px;
    font-size: 13px;
    }
    .hero-form input {
    font-size: 13px;
    padding: 5px;
    }
    .hero-form button {
    font-size: 13px;
    padding: 9px;
    }
    .checkbox {
    font-size: 12px;
    }
    .hero-form label span {
    font-size: 11px;
    }
    }
    .hero-form .checkbox span {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #444;
    }
    /* MOBILE */
    @media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; align-items: center; }
    .hero-text { max-width: 100%; }
    .hero-form { grid-template-columns: 1fr; width: 100%; max-width: 320px; }
    .duration i {
    color: #FEC20F;
    margin-right: 8px;
    font-size: 16px;
    }
}

.contact-details {
    background: #FEC20F;
    color: #fff;
    padding: 15px 30px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 90%;
    text-align: center;
    }
    .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    }
    .contact-item i {
    color: #0354A6;
    font-size: 18px;
    }
    .contact-item a {
    color: #0354A6;
    text-decoration: none;
    transition: color 0.3s ease;
    }
    .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
    }
    @media (max-width: 600px) {
    .contact-details {
    flex-direction: column;
    padding: 20px;
    }
    }

    .header {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background: #0354A6;
        color: #fff;
        flex-wrap: wrap;
        }
        .logo {
        font-size: 20px;
        font-weight: bold;
        }
        .contact-details {
        display: flex;
        flex-direction: column;
        font-size: 14px;
        }
        .menu-toggle {
        display: none;
        font-size: 26px;
        cursor: pointer;
        }
        .nav {
        background: #fff;
        padding: 1px;
        }
        .nav-list {
        display: flex;
        list-style: none;
        justify-content: center;
        gap: 30px;
        padding: 15px 0;
        flex-wrap: wrap;
        }
        .nav-list li a {
        text-decoration: none;
        color: #06038D;
        font-weight: 500;
        position: relative;
        }
        .nav-list li {
        position: relative;
        }
        .nav-list .dropdown:hover .dropdown-menu {
        display: flex;
        }
        .nav-list .mega:hover .mega-menu {
        display: flex;
        }
        /* Dropdown Menu */
        .dropdown-menu {
        position: absolute;
        top: 20px;
        left: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        min-width: 220px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 10;
        }
        .dropdown-menu li a {
        padding: 10px 15px;
        display: block;
        color: #333;
        white-space: nowrap;
        }
        .dropdown-menu li a:hover {
        background: #FEC20F;
        color: #000;
        }
        /* Mega Menu */
        .mega-menu {
        position: absolute;
        top: 20px;
        left: 0;
        background: #fff;
        width: 1000px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: none;
        justify-content: space-between;
        z-index: 10;
        }
        .mega-menu .column {
        width: 50%;
        }
        .mega-menu .column h4 {
        margin-bottom: 10px;
        font-size: 16px;
        color: #0354A6;
        border-bottom: 1px solid #eee;
        }
        .mega-menu .column a {
        display: block;
        margin: 5px 0;
        color: #333;
        font-size: 14px;
        text-decoration: none;
        padding: 3%;
        }
        .mega-menu .column a:hover {
        color: #FEC20F;
        text-decoration: underline;
        }
        /* Responsive */
        @media (max-width: 768px) {
        .contact-details {
        display: none;
        }
        .menu-toggle {
        display: block;
        color: #fff;
        }
        .nav {
        display: none;
        flex-direction: column;
        }
        .nav.active {
        display: flex;
        }
        .nav-list {
        flex-direction: column;
        gap: 0;
        }
        .nav-list li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #ddd;
        }
        .nav-list li a {
        display: block;
        padding: 12px 20px;
        }
        
            .nav-list span {
        display: block;
        padding: 12px 20px;
        }
        .dropdown-menu,
        .mega-menu {
        position: static;
        box-shadow: none;
        padding: 10px 20px;
        background: #f8f8f8;
        flex-direction: column;
        width: 100%;
        }
        .mega-menu .column {
        width: 100%;
        margin-bottom: 15px;
        }
        }
        @media (max-width: 768px) {
        .hero {
        height: 95vh; /* Reduce height for mobile */
        padding: 0 10px; /* Smaller padding */
        background-position: center;
        background-size: cover;
        }
        .hero h1 {
        font-size: 1.8rem;  }
        .hero p {
        font-size: 1.2rem; /* Adjust text size */
        line-height: 1.4;
        padding: 3%;
        }
        }
        @media (max-width: 480px) {
        .hero {
        height: 100vh; /* Further reduce for very small screens */
        }
        .hero h1 {
        font-size: 1.9rem;
        }
        .hero p {
        font-size: 0.9rem;
        }
        }

           /* Trigger Button */
           #urlEnquiry {
            padding: 12px 24px;
            background-color: #0354A6;
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            }
            /* Popup wrapper */
            .popup-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            }
            /* Popup box */
            .popup-box {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: fadeIn 0.3s ease-in-out;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            }
            /* Close button */
            .popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 22px;
            background: none;
            border: none;
            cursor: pointer;
            color: #333;
            }

           


                .section-wrapper {
                    max-width: 1400px;
                    margin: 40px auto;
                    padding: 20px;
                    display: flex;
                    gap: 20px;
                    flex-wrap: wrap;
                    }
                    .toc-box {
                    flex: 0 0 230px;
                    background: #0354A6;
                    color: white;
                    border-radius: 12px;
                    padding: 20px;
                    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
                    }
                    .toc-box h3 {
                    font-size: 20px;
                    margin-bottom: 15px;
                    border-bottom: 2px solid #FEC20F;
                    padding-bottom: 5px;
                    }
                    .toc-box ul {
                    list-style: none;
                    padding: 0;
                    }
                    .toc-box li {
                    margin: 10px 0;
                    }
                    .toc-box a {
                    color: #FEC20F;
                    text-decoration: none;
                    font-weight: 500;
                    }
                    .toc-box a:hover {
                    color: #fff;
                    }
                    .content-box {
                    flex: 1 1 0%;
                    background: #fff;
                    border-radius: 12px;
                    padding: 25px;
                    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
                    min-width: 0;
                    }
                    .content-box h1,
                    .content-box h2,
                    .content-box h3,
                    .content-box h4,
                    .content-box h5,
                    .content-box h6 {
                    color: #0354A6;
                    }
                    .content-box h2 {
                    font-size: 26px;
                    margin-bottom: 20px;
                    }
                    .content-box h4 {
                    font-size: 18px;
                    margin-top: 30px;
                    color: #222;
                    }
                    .readmore-content {
                    overflow: hidden;
                    max-height: 150px;
                    transition: max-height 0.6s ease;
                    position: relative;
                    }
                    .readmore-content.expanded {
                    max-height: none;
                    }
                    .readmore-btn {
                    display: inline-block;
                    margin-top: 15px;
                    background-color: #FEC20F;
                    color: #0354A6;
                    font-weight: 600;
                    border: none;
                    padding: 10px 20px;
                    border-radius: 8px;
                    cursor: pointer;
                    transition: background 0.3s;
                    }
                    .readmore-btn:hover {
                    background: #e0b000;
                    }
                    @media (max-width: 768px) {
                    .section-wrapper {
                    flex-direction: column;
                    }
                    .toc-box, .content-box {
                    flex: 1 1 90%;
                    width: 90%;
                    }
                    .toc-box h3 {
                    font-size: 18px;
                    }
                    .content-box h2 {
                    font-size: 22px;
                    }
                    }


                    section {
                        max-width: 100%;
                        margin: auto;
                        padding: 10px;
                        }
                        .table-container {
                        width: 100%;
                        background: white;
                        border-radius: 12px;
                        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                        }
                        table {
                        width: 100%;
                        border-collapse: collapse;
                        }
                        caption {
                        caption-side: top;
                        padding: 12px;
                        font-size: 1.2rem;
                        font-weight: bold;
                        color: #0354A6;
                        text-align: left;
                        }
                        thead {
                        background-color: #0354A6;
                        color: white;
                        }
                        th, td {
                        padding: 12px;
                        text-align: left;
                        border-bottom: 1px solid #ddd;
                        font-size: 14px;
                        }
                        .tag {
                        background-color: #FEC20F;
                        padding: 4px 10px;
                        border-radius: 20px;
                        font-size: 0.85rem;
                        color: #000;
                        display: inline-block;
                        }
                        /* ✅ Optimized Mobile View */
                        @media (max-width: 768px) {
                        table, thead, tbody, th, td, tr {
                        display: block;
                        width: 100%;
                        }
                        thead {
                        display: none;
                        }
                        caption {
                        font-size: 1.1rem;
                        }
                        tbody tr {
                        background-color: white;
                        border-radius: 10px;
                        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
                        margin-bottom: 16px;
                        padding: 12px;
                        }
                        td {
                        position: relative;
                        padding-left: 120px;
                        padding-right: 12px;
                        border: none;
                        font-size: 14px;
                        }
                        td::before {
                        content: attr(data-label);
                        position: absolute;
                        top: 10px;
                        left: 12px;
                        width: 100px;
                        font-weight: bold;
                        color: #0354A6;
                        font-size: 13px;
                        }
                        }

                        :root {
                            --primary: #0354A6;
                            --accent: #FEC20F;
                            }
                            body {
                            margin: 0;
                            font-family: 'Segoe UI', sans-serif;
                            background: #f4f4f4;
                            }
                            .container {
                            display: flex;
                            max-width: 1200px;
                            margin: auto;
                            padding: 1rem;
                            gap: 1rem;
                            flex-wrap: wrap;
                            }
                            .sidebar {
                            width: 250px;
                            background: #FEC20F;
                            padding: 1rem;
                            border-radius: 8px;
                            box-shadow: 0 0 8px rgba(0,0,0,0.05);
                            }
                            .cards {
                            flex: 1;
                            display: grid;
                            grid-template-columns: repeat(3, 1fr);
                            gap: 1rem;
                            }
                            .card {
                            background: #fff;
                            border-radius: 10px;
                            overflow: hidden;
                            position: relative;
                            display: flex;
                            flex-direction: column;
                            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
                            height: 560px;}
                            .card img {
                            width: 100%;
                            height: 180px;
                            object-fit: cover;
                            }
                            .tour-type {
                            position: absolute;
                            top: 10px;
                            right: 10px;
                            background: var(--primary);
                            color: white;
                            font-size: 12px;
                            padding: 3px 8px;
                            border-radius: 5px;
                            }
                            .recommended {
                            position: absolute;
                            top: 10px;
                            left: 10px;
                            background: var(--accent);
                            color: #000;
                            font-weight: bold;
                            padding: 4px 8px;
                            border-radius: 5px;
                            }
                            .card-body {
                            padding: 1rem;
                            display: flex;
                            flex-direction: column;
                            flex: 1;
                            }
                            .card-body h4 {
                            margin: 0 0 0.5rem;
                            color: var(--primary);
                            }
                            .inclusions {
                            display: flex;
                            flex-wrap: wrap;
                            gap: 2px;
                            margin-top: 5px;
                            }
                            .inclusions div {
                            display: flex;
                            align-items: center;
                            background: #f0f8ff;
                            padding: 6px 10px;
                            border-radius: 20px;
                            font-size: 9px;
                            color: #0354A6;
                            border: 1px solid #d1e6f9;
                            }
                            .inclusions i {
                            margin-right: 6px;
                            color: #0354A6;
                            }
                            .inclusions div {
                            display: flex;
                            align-items: center;
                            gap: 6px;
                            color: #0354A6;
                            }
                            .price {
                            font-size: 19px;
                            font-weight: bold;
                            }
                            .price del {
                            color: gray;
                            margin-left: 8px;
                            }
                            .buttons {
                            display: flex;
                            gap: 0.5rem;
                            margin: 0;
                            }
                            .buttons a {
                            flex: 1;
                            text-align: center;
                            text-decoration: none;
                            padding: 0.5rem;
                            font-weight: bold;
                            border-radius: 5px;
                            }
                            .view-btn {
                            background: var(--primary);
                            color: white;
                            }
                            .enquire-btn {
                            background: var(--accent);
                            color: #000;
                            }
                            .card-image img {
                            width: 100%;
                            height: 150px; /* or auto/cover based on design */
                            object-fit: cover;
                            border-top-left-radius: 12px;
                            border-top-right-radius: 12px;
                            }
                            .pagination {
                            text-align: center;
                            margin: 2rem 0;
                            }
                            .pagination button {
                            background: var(--primary);
                            color: white;
                            margin: 0 0.25rem;
                            padding: 0.5rem 1rem;
                            border: none;
                            border-radius: 4px;
                            cursor: pointer;
                            }
                                    .pagination button.active {
                       background: #FEC20F; /* Highlight color for active page */
                       font-weight: bold;
                       cursor: default;
                   }
                            @media (max-width: 1024px) {
                            .cards {
                            grid-template-columns: repeat(2, 1fr);
                            width: 100%;
                            }
                            }
                            @media (max-width: 768px) {
                            .container {
                            flex-direction: column;
                            }
                            .sidebar {
                            width: 94%;
                            }
                            .cards {
                            grid-template-columns: 1fr;
                            }
                            }

                            .breadcrumb ul {
                                list-style: none;
                                display: flex;
                                flex-wrap: wrap;
                                gap: 8px;
                                padding: 0;
                                margin: 0;
                                font-size: 14px;
                                }
                                .breadcrumb li::after {
                                content: ">";
                                margin-left: 8px;
                                color: #999;
                                }
                                .breadcrumb li:last-child::after {
                                content: "";
                                }
                                .breadcrumb a {
                                text-decoration: none;
                                color: #0354A6;
                                }
                                .breadcrumb span {
                                color: #333;
                                text-align: center;
                                }
                                .placesIncluded {
                                display: flex;
                                flex-wrap: wrap;
                                gap: 2px;
                                margin-top: 5px;
                                }
                                .placesIncluded div {
                                display: flex;
                                align-items: center;
                                background: #f0f8ff;
                                padding: 6px 10px;
                                border-radius: 20px;
                                font-size: 9px;
                                color: #0354A6;
                                border: 1px solid #d1e6f9;
                                }
                                .placesIncluded i {
                                margin-right: 6px;
                                color: #0354A6;
                                }
                                .places-filter-container {
                                display: flex;
                                gap: 30px;
                                flex-wrap: wrap;
                                margin-top: 10px;
                                }
                                .places-column {
                                flex: 1;
                                min-width: 250px;
                                }
                                .places-column strong {
                                display: block;
                                margin-bottom: 10px;
                                font-size: 16px;
                                color: #0354A6;
                                }
                                .places-column label {
                                display: block;
                                margin-bottom: 6px;
                                font-size: 14px;
                                color: #333;
                                }
                                :root {
                                    --primary: #0354A6;
                                    }
                                    .container {
                                    padding: 10px;
                                    max-width: 1400px;
                                    margin: auto;
                                    }
                                    .filters {
                                    border: 1px solid #ccc;
                                    padding: 15px;
                                    border-radius: 6px;
                                    background-color: white;
                                    }
                                    .filters h3 {
                                    color: var(--primary);
                                    font-size: 16px;
                                    text-align: left;
                                    }
                                    .filters label {
                                    display: block;
                                    font-size: 11px;
                                    margin: 6px 0;
                                    }
                                    .filters input {
                                    margin-right: 8px;
                                    }
                                    .clear-filters {
                                    background-color: #FEC20F;
                                    color: black;
                                    border: none;
                                    padding: 6px 12px;
                                    cursor: pointer;
                                    margin-bottom: 10px;
                                    border-radius: 4px;
                                    font-size: 14px;
                                    }
                                    .clear-filters:hover {
                                    background-color: #0354A6;
                                    color: white;
                                    }
                                    .filters h3,
                                    .toggle-header {
                                    text-align: left;
                                    }
                                    /* Toggle styles */
                                    .toggle-header {
                                    display: flex;
                                    justify-content: space-between;
                                    align-items: left;
                                    cursor: pointer;
                                    padding: 5px 0;
                                    font-size: 16px;
                                    color: var(--primary);
                                    text-align: left;
                                    }
                                    .toggle-icon {
                                    font-weight: bold;
                                    font-size: 18px;
                                    color: #333;
                                    }
                                    .filter-content {
                                    margin-top: 5px;
                                    }
                                    .filter-section.collapsed .filter-content {
                                    display: none;
                                    }
                                    .filter-section.collapsed .toggle-icon {
                                    content: "+";
                                    }
                                    .headingsecond{
                                    text-align: center;
                                    color: #0354A6;
                                    }
                                    .duration i {
                                    color: #FEC20F;
                                    margin-right: 8px;
                                    font-size: 16px;
                                    }
                                    .banner-container {
                                        max-width: 1400px;
                                        margin: 0 auto;
                                        }
                                        .offer-banner {
                                        display: flex;
                                        flex-wrap: wrap;
                                        align-items: center;
                                        justify-content: space-between;
                                        background: linear-gradient(135deg, #0354A6, #012c56);
                                        color: white;
                                        padding: 30px 25px;
                                        border-radius: 15px;
                                        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
                                        gap: 30px;
                                        }
                                        .offer-text {
                                        flex: 1 1 500px;
                                        }
                                        .offer-text h2 {
                                        font-size: 2.5rem;
                                        margin: 0 0 10px;
                                        color: #FEC20F;
                                        }
                                        .offer-text p {
                                        font-size: 1.1rem;
                                        margin: 0 0 15px;
                                        line-height: 1.6;
                                        }
                                        .features {
                                        display: flex;
                                        flex-wrap: wrap;
                                        gap: 15px;
                                        margin: 15px 0;
                                        }
                                        .feature {
                                        background-color: rgba(255, 255, 255, 0.1);
                                        border-radius: 8px;
                                        padding: 8px 15px;
                                        font-size: 0.95rem;
                                        display: flex;
                                        align-items: center;
                                        gap: 8px;
                                        }
                                        .feature i {
                                        color: #FEC20F;
                                        }
                                        .stars {
                                        color: #FEC20F;
                                        font-size: 1.2rem;
                                        margin-bottom: 10px;
                                        }
                                        .claim-btn {
                                        background-color: #FEC20F;
                                        color: #0354A6;
                                        padding: 12px 28px;
                                        border-radius: 50px;
                                        text-decoration: none;
                                        font-weight: bold;
                                        font-size: 1rem;
                                        display: inline-block;
                                        margin-top: 10px;
                                        transition: background-color 0.3s ease;
                                        }
                                        .claim-btn:hover {
                                        background-color: #e0ad00;
                                        }
                                        .circle-images {
                                        display: flex;
                                        gap: 15px;
                                        flex: 1 1 300px;
                                        justify-content: center;
                                        flex-wrap: wrap;
                                        }
                                        .circle-images img {
                                        width: 150px;
                                        height: 150px;
                                        object-fit: cover;
                                        border-radius: 50%;
                                        border: 3px solid #FEC20F;
                                        }
                                        @media (max-width: 768px) {
                                        .offer-banner {
                                        flex-direction: column;
                                        text-align: center;
                                        padding: 25px 15px;
                                        }
                                        .offer-text h2 {
                                        font-size: 2rem;
                                        }
                                        .circle-images img {
                                        width: 70px;
                                        height: 70px;
                                        }
                                        .features {
                                        justify-content: center;
                                        }
                                        .circle-images img {
                                        width: 150px;
                                        height: 150px;
                                        object-fit: cover;
                                        }
                                    }

                                    .section-title {
                                        font-size: 22px;
                                        text-align: center;
                                        font-weight: 700;
                                        margin: 30px 0 15px;
                                        color: #0354A6;
                                        }
                                        .button-destination {
                                        display: grid;
                                        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                                        gap: 12px;
                                        padding: 10px 20px;
                                        max-width: 1400px;
                                        margin: 0 auto;
                                        }
                                        .kashmir-button {
                                        display: inline-block;
                                        background: #FEC20F;
                                        color: #000;
                                        text-decoration: none;
                                        font-size: 13px;
                                        font-weight: 500;
                                        text-align: center;
                                        padding: 12px 20px;
                                        border-radius: 18px;
                                        transition: all 0.3s ease;
                                        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
                                        }
                                        .kashmir-button:hover {
                                        background: #0354A6;
                                        color: #fff;
                                        transform: translateY(-2px);
                                        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
                                        }

                                        .kashmir-container {
                                            display: flex;
                                            max-width: 1400px;
                                            margin: auto;
                                            padding: 20px;
                                            gap: 20px;
                                            flex-wrap: wrap;
                                            }
                                            .kashmir-tabs {
                                            flex: 1 1 250px;
                                            min-width: 200px;
                                            }
                                            .kashmir-tabs button {
                                            display: flex;
                                            align-items: center;
                                            gap: 10px;
                                            width: 100%;
                                            padding: 12px;
                                            margin-bottom: 10px;
                                            border: none;
                                            background: #FEC20F;
                                            cursor: pointer;
                                            text-align: left;
                                            font-weight: bold;
                                            transition: 0.3s;
                                            font-size: 15px;
                                            border-radius: 12px;
                                            }
                                            .kashmir-tabs button.active {
                                            background: #0354A6;
                                            color: white;
                                            }
                                            .kashmir-content {
                                            flex: 3 1 700px;
                                            }
                                            .kashmir-section {
                                            display: none;
                                            }
                                            .kashmir-section.active {
                                            display: block;
                                            }
                                            .section-title {
                                            font-size: 22px;
                                            margin-bottom: 15px;
                                            }
                                            .button-destination {
                                            display: flex;
                                            flex-wrap: wrap;
                                            gap: 10px;
                                            }
                                            .kashmir-button {
                                            padding: 10px 15px;
                                            background: #0354A6;
                                            color: white;
                                            text-decoration: none;
                                            border-radius: 12px;
                                            font-size: 14px;
                                            transition: 0.3s;
                                            }
                                            .kashmir-button:hover {
                                            background: #023b75;
                                            }
                                            @media (max-width: 768px) {
                                            .kashmir-container {
                                            flex-direction: column;
                                            padding: 10px;
                                            height: auto !important;
                                            }
                                            .kashmir-tabs button {
                                            margin-bottom: 8px;
                                            font-size: 16px;
                                            text-align: center;
                                            }
                                            }
                                            .centered-section {
                                            background-color: white;
                                            width: 90%;
                                            max-width: 1400px;
                                            margin: auto;
                                            text-align: center;
                                            justify-content: center;
                                            align-items: center;
                                            min-height: auto;
                                            box-sizing: border-box;
                                            padding: 20px;
                                            height: auto !important;
                                            border-radius: 18px;
                                            }
                                            @media (max-width: 768px) {
                                            .centered-section {
                                            flex-direction: column;
                                            padding: 30px 15px;
                                            height: auto !important;
                                            }
                                            }

                                            .review-card {
                                                background: #fff;
                                                border-radius: 18px;
                                                padding: 24px;
                                                max-width: 1350px;
                                                margin: auto;
                                                box-shadow: 0 4px 20px rgba(0,0,0,0.05);
                                                }
                                                .review-card h2 {
                                                font-size: 24px;
                                                margin-bottom: 24px;
                                                font-weight: 600;
                                                }
                                                .main-rating {
                                                display: flex;
                                                align-items: center;
                                                gap: 12px;
                                                margin-bottom: 16px;
                                                flex-wrap: wrap;
                                                }
                                                .main-rating p {
                                                font-size: 36px;
                                                color: #222;
                                                }
                                                .stars {
                                                color: #FEC20F ;
                                                font-size: 20px;
                                                }
                                                .rating-bar {
                                                display: flex;
                                                align-items: center;
                                                margin: 6px 0;
                                                }
                                                .rating-bar .bar {
                                                flex: 1;
                                                height: 8px;
                                                margin: 0 12px;
                                                background: #eee;
                                                border-radius: 4px;
                                                position: relative;
                                                }
                                                .rating-bar .bar .fill {
                                                height: 100%;
                                                background: 0354A6;
                                                border-radius: 4px;
                                                }
                                                .ratings-summary {
                                                margin-bottom: 24px;
                                                }
                                                .tags {
                                                display: flex;
                                                flex-wrap: wrap;
                                                gap: 10px;
                                                margin-bottom: 32px;
                                                }
                                                .tag {
                                                background: #0354A6;
                                                color: white;
                                                padding: 6px 16px;
                                                border-radius: 12px;
                                                font-size: 14px;
                                                font-weight: 500;
                                                }
                                                .tag.gray {
                                                background: #f2f2f2;
                                                color: #555;
                                                }
                                                .review {
                                                margin-bottom: 32px;
                                                }
                                                .review-header {
                                                display: flex;
                                                align-items: center;
                                                margin-bottom: 12px;
                                                }
                                                .avatar {
                                                width: 40px;
                                                height: 40px;
                                                border-radius: 50%;
                                                background: #ccc;
                                                margin-right: 12px;
                                                }
                                                .review-info {
                                                font-size: 14px;
                                                color: #333;
                                                }
                                                .review-info span {
                                                color: #888;
                                                }
                                                .review-content {
                                                font-size: 15px;
                                                line-height: 1.5;
                                                margin-bottom: 10px;
                                                color: #222;
                                                }
                                                .review-images {
                                                display: flex;
                                                gap: 8px;
                                                }
                                                .review-images img {
                                                width: 150px;
                                                height: 150px;
                                                object-fit: cover;
                                                border-radius: 8px;
                                                }
                                                .see-all {
                                                text-align: left;
                                                color: #0354A6;
                                                font-weight: 500;
                                                cursor: pointer;
                                                font-size: 14px;
                                                }
                                                #more-reviews {
                                                display: none;
                                                }
                                                @media (max-width: 600px) {
                                                .main-rating {
                                                flex-direction: column;
                                                align-items: flex-start;
                                                }
                                                .review-images img {
                                                width: 50px;
                                                height: 50px;
                                                }
                                                .review-card {
                                                padding: 20px;
                                                }
                                                .main-rating h1 {
                                                font-size: 28px;
                                                }
                                                }
                                                .review-wrapper {
                                                padding: 20px 15px;
                                                background-color: white;
                                                text-align: left;
                                                }
                                                .review-container {
                                                display: flex;
                                                justify-content: left;
                                                align-items: left;
                                                gap: 10px;
                                                flex-wrap: wrap;
                                                }
                                                .review-image {
                                                max-width: 150px;
                                                width: 100%;
                                                height: auto;
                                                border-radius: 8px;
                                                transition: transform 0.3s ease;
                                                }
                                                .review-image:hover {
                                                transform: scale(1.05);
                                                }

                                                .faq-wrapper {
                                                    max-width: 1400px;
                                                    margin: auto;
                                                    padding: 2rem 1rem;
                                                    }
                                                    .faqsheading {
                                                    text-align: center;
                                                    color: #0354A6;
                                                    margin-bottom: 2rem;
                                                    }
                                                    .faq-container {
                                                    display: grid;
                                                    grid-template-columns: 1fr 1fr;
                                                    gap: 1.5rem;
                                                    }
                                                    .faq-item {
                                                    background: #fff;
                                                    border-radius: 10px;
                                                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                                                    overflow: hidden;
                                                    transition: all 0.3s ease;
                                                    }
                                                    .faq-question {
                                                    padding: 1rem 1.2rem;
                                                    background: #0354A6;
                                                    color: #fff;
                                                    font-weight: 600;
                                                    cursor: pointer;
                                                    position: relative;
                                                    }
                                                    .faq-question::after {
                                                    content: '+';
                                                    position: absolute;
                                                    right: 1.2rem;
                                                    font-size: 20px;
                                                    transition: transform 0.3s ease;
                                                    }
                                                    .faq-item.active .faq-question::after {
                                                    content: '−';
                                                    }
                                                    .faq-answer {
                                                    max-height: 0;
                                                    overflow: hidden;
                                                    transition: max-height 0.4s ease, padding 0.4s ease;
                                                    background: #f0f8ff;
                                                    padding: 0 1.2rem;
                                                    }
                                                    .faq-item.active .faq-answer {
                                                    max-height: 300px;
                                                    padding: 1rem 1.2rem;
                                                    }
                                                    @media (max-width: 768px) {
                                                    .faq-container {
                                                    grid-template-columns: 1fr;
                                                    }
                                                    }

                                                    footer {
                                                        background-color: #0354A6; 
                                                        color: var(--text-light);
                                                        padding: 60px 20px 30px;
                                                        position: relative;
                                                        overflow: hidden;
                                                        border-radius: 18px;
                                                        }
                                                        .footer-top {
                                                        max-width: 1200px;
                                                        margin: 0 auto;
                                                        }
                                                        .footer-brand {
                                                        text-align: center;
                                                        margin-bottom: 40px;
                                                        }
                                                        .footer-brand img {
                                                        width: 160px;
                                                        margin-bottom: 12px;
                                                        }
                                                        .footer-brand p {
                                                        font-size: 14px;
                                                        line-height: 1.6;
                                                        color: #FEC20F;
                                                        max-width: 700px;
                                                        margin: 0 auto;
                                                        }
                                                        .footer-columns {
                                                        display: grid;
                                                        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                                                        gap: 30px;
                                                        margin-top: 40px;
                                                        }
                                                        .footer-col {
                                                        background: rgba(0, 0, 0, 0.5);
                                                        border-radius: 19px;
                                                        padding: 20px;
                                                        backdrop-filter: blur(10px);
                                                        -webkit-backdrop-filter: blur(10px);
                                                        box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
                                                        }
                                                        .footer-col .foot-para {
                                                        font-size: 16px;
                                                        color: #FEC20F;
                                                        margin-bottom: 16px;
                                                        }
                                                        .footer-col ul {
                                                        list-style: none;
                                                        padding: 0;
                                                        }
                                                        .footer-col ul li {
                                                        margin-bottom: 10px;
                                                        }
                                                        .footer-col ul li a {
                                                        color: #eee;
                                                        text-decoration: none;
                                                        font-size: 14px;
                                                        transition: 0.3s ease;
                                                        }
                                                        .footer-col ul li a:hover {
                                                        color: var(--secondary);
                                                        padding-left: 4px;
                                                        color: #FEC20F;
                                                        }
                                                        .footer-col p, .footer-col a {
                                                        color: #ddd;
                                                        font-size: 14px;
                                                        line-height: 1.6;
                                                        text-decoration: none;
                                                        }
                                                        .social-icons {
                                                        margin-top: 12px;
                                                        display: flex;
                                                        gap: 12px;
                                                        flex-wrap: wrap;
                                                        }
                                                        .social-icons a {
                                                        display: inline-flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        width: 36px;
                                                        height: 36px;
                                                        border-radius: 50%;
                                                        background: #FEC20F;
                                                        transition: 0.3s;
                                                        color: #0354A6;
                                                        }
                                                        .social-icons a:hover {
                                                        background: #0354A6;
                                                        color: #FEC20F;
                                                        }
                                                        .social-icons img {
                                                        width: 20px;
                                                        height: 20px;
                                                        filter: brightness(0) invert(1);
                                                        }
                                                        .footer-bottom {
                                                        margin-top: 40px;
                                                        text-align: center;
                                                        font-size: 13px;
                                                        color: #FEC20F;
                                                        border-top: 1px solid rgba(255,255,255,0.1);
                                                        padding-top: 20px;
                                                        }
                                                        @media (max-width: 600px) {
                                                        .footer-brand img {
                                                        width: 120px;
                                                        }
                                                        .footer-brand p {
                                                        font-size: 13px;
                                                        }
                                                        .footer-col h4 {
                                                        font-size: 15px;
                                                        }
                                                        .footer-col ul li a,
                                                        .footer-col p {
                                                        font-size: 13px;
                                                        }
                                                        }

                                                          /* Floating Button */
         .floating-call-btn {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: #0354A6;
            color: white;
            padding: 14px 20px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            z-index: 999;
            display: none;
            animation: glowPulse 2s infinite;
            }
            .floating-call-btn:hover {
            background-color: #023e7d;
            }
            @keyframes glowPulse {
            0% { box-shadow: 0 0 0 0 rgba(254,194,15, 0.6); }
            70% { box-shadow: 0 0 0 20px rgba(254,194,15, 0); }
            100% { box-shadow: 0 0 0 0 rgba(254,194,15, 0); }
            }
            /* Overlay */
            .call-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            }
            /* Call Form Box */
            .callback-popup-box {
            display: none;
            position: fixed;
            bottom: 80px;
            left: 20px;
            background-color: #FEC20F;
            backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 20px;
            width: 250px;
            color: #000;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            z-index: 999;
            border: 1px solid rgba(255,255,255,0.3);
            }
            .callback-popup-box h3 {
            margin-top: 0;
            font-size: 20px;
            color: #0354A6;
            }
            .callback-popup-box label {
            display: block;
            margin-top: 10px;
            font-weight: 500;
            }
            .callback-popup-box input[type="text"],
            .callback-popup-box input[type="tel"],
            .callback-popup-box input[type="date"],
            .callback-popup-box input[type="time"] {
            width: 90%;
            padding: 8px 10px;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-top: 5px;
            background: #fff;
            }
            .checkbox-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            }
            .checkbox-container label {
            margin: 0;
            }
            .submit-call-btn {
            width: 100%;
            padding: 10px;
            background: #0354A6;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
            }
            .close-call-box {
            position: absolute;
            top: 10px;
            right: 14px;
            font-size: 20px;
            color: #000;
            cursor: pointer;
            }
            @media(max-width: 600px) {
            .floating-call-btn {
            display: none !important;
            }
            }

              /* Mobile Bottom Nav */
         .mobile-nav {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #0354A6; /* Updated background color */
            color: #FEC20F;
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
            }
            .mobile-nav .nav-btn {
            text-align: center;
            color: #FEC20F; /* Updated text color */
            text-decoration: none;
            font-size: 14px;
            background: none;
            border: none;
            cursor: pointer;
            }
            .mobile-nav .nav-btn i {
            font-size: 20px;
            display: block;
            margin-bottom: 2px;
            }
            /* Visible State */
            .mobile-nav.show {
            opacity: 1;
            visibility: visible;
            }
            /* Hide on Desktop */
            @media (min-width: 769px) {
            .mobile-nav {
            display: none !important;
            }
            }


              /* Popup wrapper */
         .popup-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            }
            /* Popup box */
            .popup-box {
            background: #0354A6;
            padding: 30px;
            border-radius: 12px;
            max-width: 300px;
            width: 90%;
            position: relative;
            animation: fadeIn 0.3s ease-in-out;
            box-shadow: 0 0 20px rgba(0,0,0,0.4);
            }
            /* Close button */
            .popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 22px;
            background: none;
            border: none;
            cursor: pointer;
            color: white;
            }
            /* Keyframe animation */
            @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
            }
            /* Responsive mobile popup styles */
            @media (max-width: 600px) {
            .popup-box {
            background: #0354A6;
            color: #fff;
            padding: 20px;
            border-radius: 10px;
            max-width: 350px;
            width: 100%;
            }
            .popup-box h2,
            .label-icon span,
            .secure-checkbox span {
            color: #fff;
            }
            .popup-box input,
            .popup-box button {
            font-size: 14px;
            }
            }