        @import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
        /* @import url('./navbar.css'); */
        
        @font-face {
            font-family: 'BrotherlandSignature';
            src: url('../fonts/Brotherland-Signature-BF65a66dd8de51e.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'Rockybilly';
            src: url('../fonts/Rockybilly.ttf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }
        /* Example Usage */
        
        .signature-text {
            /* font-family: 'BrotherlandSignatureBold', cursive !important; */
        }
        
         :root {
            --primary-color: #f68c3d;
            --secondary-color: #aa6326;
            --white-color: #FFFFFF;
            --accent-color: #000;
            --text-color: #69615D;
            --divider-color: #CD5F371A;
            --dark-divider-color: #FFFFFF1A;
            --error-color: rgb(230, 87, 87);
            --transition: all .5s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            padding: 0;
            position: relative;
            overflow-x: clip;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding: 70px;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none !important;
        }
        
        p {
            font-size: 15px;
        }
        
        h2 {
            font-size: 32px;
            font-weight: 700 !important;
            margin-bottom: 10px;
            color: #222;
        }
        
        h2 span {
            color: var(--primary-color);
        }
        /* =========================
   Wild Fables Preloader
========================= */
        
        #wf-preloader {
            position: fixed;
            inset: 0;
            background: #0b0f0c;
            /* deep forest black */
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }
        
        #wf-preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        /* Inner */
        
        #wf-preloader .wf-preloader-inner {
            text-align: center;
        }
        /* Logo */
        
        #wf-preloader .wf-logo {
            display: block;
            margin: 0 auto;
            opacity: 0;
        }
        /* ======================
   FIRST LOGO – DROP FROM TOP
====================== */
        
        #wf-preloader .wf-logo-drop {
            width: 180px;
            margin-bottom: 12px;
            animation: logoDrop 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        /* ======================
   SECOND LOGO – RISE FROM BOTTOM
====================== */
        
        #wf-preloader .wf-logo-rise {
            width: 140px;
            margin-bottom: 26px;
            animation: logoRise 1.4s ease-out forwards;
            animation-delay: 1.2s;
        }
        /* Loading bar */
        
        #wf-preloader .wf-loading-bar {
            width: 220px;
            height: 2px;
            background: rgba(255, 255, 255, 0.15);
            margin: 0 auto 14px;
            overflow: hidden;
            position: relative;
        }
        
        #wf-preloader .wf-loading-bar span {
            position: absolute;
            left: -40%;
            width: 40%;
            height: 100%;
            background: #c4a25a;
            /* Wild Fables gold */
            animation: loadingMove 1.6s infinite ease-in-out;
        }
        /* Text */
        
        #wf-preloader .wf-loading-text {
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
        }
        /* ======================
   DROP ANIMATION (WATER FEEL)
====================== */
        
        @keyframes logoDrop {
            0% {
                opacity: 0;
                transform: translateY(-120px);
            }
            60% {
                opacity: 1;
                transform: translateY(10px);
            }
            80% {
                transform: translateY(-4px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* ======================
   RISE ANIMATION (SOFT ENTRY)
====================== */
        
        @keyframes logoRise {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 576px) {
            #wf-preloader .wf-logo-drop {
                width: 140px;
            }
            #wf-preloader .wf-logo-rise {
                width: 110px;
            }
        }
        
        @keyframes loadingMove {
            0% {
                left: -40%;
            }
            100% {
                left: 100%;
            }
        }
        /* Show only on desktop (tablet & large screens) */
        
        .desktop {
            display: none;
        }
        
        @media (min-width: 768px) {
            .desktop {
                display: block !important;
            }
        }
        /* Show only on mobile (phones only) */
        
        .mobile {
            display: block;
        }
        
        @media (min-width: 768px) {
            .mobile {
                display: none !important;
            }
        }
        
        header {
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 999;
            transition: all 0.4s ease-in-out;
        }
        /* When sticky (scrolled) */
        
        header.sticky {
            position: fixed;
            top: 0;
            width: 100%;
            animation: slideDown 0.6s ease;
            background: rgba(0, 0, 0, 0.83);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border-bottom: 1px solid #1e1d1d;
            z-index: 999;
        }
        /* Shrink navbar padding and logo */
        
        header.sticky .navbar {
            padding: 0.4rem 0;
        }
        
        .navbar-brand {
            margin-right: 0 !important;
            /* background-color: #fff; */
        }
        
        .navbar-brand img {
            padding-top: 20px;
            width: 150px;
        }
        
        header.sticky .navbar-brand {
            background-color: transparent;
        }
        
        header .main-logo {
            display: block;
            filter: brightness(100);
        }
        
        header .sticky-logo {
            display: none;
        }
        
        header.sticky .main-logo {
            display: none;
        }
        
        header.sticky .sticky-logo {
            display: block;
        }
        
        header.sticky .navbar-brand img {
            padding-top: 0px;
            width: 60px;
        }
        
        .header.sticky .top-nav {
            display: none;
        }
        
        .navbar-toggler {
            color: var(--primary-color) !important;
        }
        /* Top Nav Bar */
        
        .top-nav {
            color: #fff;
            font-size: 15px;
            display: none !important;
        }
        
        .top-nav span {
            color: var(--white-color);
        }
        
        .social {
            position: relative;
            font-size: 24px;
            /* Bigger Icons */
            padding: 0 12px;
            /* Space around each icon */
            display: inline-block;
            transition: 0.3s ease;
        }
        /* Instagram Gradient */
        
        .instagram i {
            background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
            -webkit-background-clip: text;
            color: transparent;
        }
        /* YouTube Color */
        
        .youtube i {
            color: #FF0000;
        }
        /* Facebook Color */
        
        .facebook i {
            color: #1877F2;
        }
        /* Vertical Divider */
        
        .divider {
            width: 1px;
            height: 22px;
            background: #ffffff50;
            display: inline-block;
            margin: 0 0px;
        }
        /* Underline animation (::after) */
        
        .social::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: currentColor;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        /* Hover */
        
        .social:hover::after {
            width: 60%;
        }
        
        nav {
            padding: 0 !important;
        }
        
        .dropdown-toggle::after {
            display: none !important;
        }
        
        .navbar-nav .nav-link {
            color: #fff;
            font-size: 15px;
            padding: 8px 10px !important;
            position: relative;
            display: block;
            /* FIX */
            text-transform: uppercase;
            transition: color 0.3s ease;
            text-shadow: 1px 0.5px #c2c2c2;
            letter-spacing: 1px;
            font-weight: 400;
        }
        /* Hover + Active + Dropdown open */
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus,
        .navbar-nav .nav-link.show,
        .navbar-nav .nav-link.active,
        .navbar-nav .nav-item.dropdown.active>.nav-link {
            color: var(--primary-color) !important;
            text-shadow: none !important;
        }
        /* Underline */
        
        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -6px;
            /* FIX */
            width: 0%;
            height: 2px;
            background: var(--primary-color);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        /* Underline active */
        
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link:focus::after,
        .navbar-nav .nav-link.show::after,
        .navbar-nav .nav-link.active::after {
            width: 60% !important;
        }
        
        .navbar-nav .nav-item.dropdown.active>.nav-link::after {
            display: block;
            width: 60% !important;
        }
        
        .dropdown-menu .dropdown-item.active {
            background: transparent;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .dropdown-menu .dropdown-item.active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0%;
            height: 2px;
            background: var(--primary-color);
            transform: translateX(-50%);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-item.dropdown.active .nav-link.dropdown-toggle::after,
        .navbar-nav .nav-link.active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -6px;
            width: 60%;
            /* Active width */
            height: 2px;
            background: var(--primary-color);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        /* Default state - hidden underline */
        
        .navbar-nav .nav-link::before {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -6px;
            width: 0%;
            height: 2px;
            background: var(--primary-color);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-item.dropdown.active .nav-link.dropdown-toggle.active::before,
        .navbar-nav .nav-link:hover::before {
            width: 60%;
        }
        
        .navbar .dropdown-menu {
            will-change: transform, opacity;
            outline: none;
        }
        
        @keyframes slideLeftIn {
            0% {
                opacity: 0;
                transform: translateX(-12px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .dropdown-menu.animate-items .dropdown-item {
            opacity: 0;
            animation-name: slideLeftIn;
            animation-duration: 320ms;
            animation-fill-mode: both;
            /* keep final state */
            animation-timing-function: cubic-bezier(.2, .9, .2, 1);
            animation-delay: calc(var(--i, 0) * 70ms);
        }
        
        .navbar .nav-item .dropdown-menu .dropdown-item {
            transform-origin: left center;
            font-size: 16px;
            padding: 8px 25px;
            font-weight: 500;
            color: var(--color-white);
            position: relative;
            overflow: hidden;
            text-transform: capitalize;
            transition: all .3s ease-in-out;
        }
        
        .dropdown-menu:not(.show) .dropdown-item {
            opacity: 1;
            animation: none;
        }
        /* @media (hover: none) and (pointer: coarse) {
     .navbar .dropdown:hover .dropdown-menu {
         display: none;
     }
 } */
        
        .slider-container {
            width: 100%;
            height: 100vh;
            overflow: hidden;
            position: relative;
            perspective: 2000px;
        }
        
        .slider-container .banner-text {
            position: absolute;
            z-index: 99;
            bottom: 150px;
            color: #fff;
        }
        
        .slider-container .banner-text h2 {
            white-space: nowrap;
            line-height: 50px;
            font-weight: 600;
            letter-spacing: 4px;
            font-weight: 700;
            font-size: 25px;
            color: #ffffff;
            /* -webkit-text-stroke: 1px #ffffff; */
            font-family: 'Rockybilly';
            margin-bottom: 30px;
            text-shadow: 1px 1px var(--primary-color);
        }
        
        .slider-container .banner-text h2 span {
            color: var(--primary-color);
        }
        
        .slider-container .banner-text h4 {
            font-size: 15px;
            text-shadow: 1px 1px var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .page {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            transform-origin: left;
            background: #fff;
        }
        
        .page.animate {
            transition: transform 3s ease-in-out;
        }
        
        .turn {
            transform: rotateY(-180deg);
        }
        
        .slider-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
        }
        /* Buttons */
        
        .btn-prev,
        .btn-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, .5);
            color: #fff;
            padding: 15px 20px;
            border: none;
            cursor: pointer;
            z-index: 20;
            border-radius: 50%;
            font-size: 28px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-prev {
            left: 20px;
        }
        
        .btn-next {
            right: 20px;
        }
        
        .slider-container .btn-prev,
        .slider-container .btn-next {
            visibility: hidden;
        }
        
        .slider-container:hover .btn-prev,
        .slider-container:hover .btn-next {
            visibility: hidden;
        }
        /* Pagination Styles */
        
        .pagination {
            position: absolute;
            bottom: 30%;
            /* left: 50%; */
            right: 0;
            transform: translateX(0%);
            display: flex !important;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            gap: 10px;
            background: transparent;
            /* padding: 10px 20px; */
            border-radius: 50px 50px 0px 0px;
            /* backdrop-filter: blur(10px); */
            padding: 10px 20px !important;
            flex-direction: column;
        }
        
        .bullet {
            position: relative;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 2px solid rgba(0, 0, 0, 0.3);
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .bullet:hover {
            transform: scale(1.2);
        }
        
        .bullet.active {
            background: rgba(255, 255, 255, 0.8);
            border-color: rgba(0, 0, 0, 0.5);
        }
        
        .bullet-fill {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .bullet.active .bullet-fill {
            animation: fillBullet 8s linear;
        }
        
        @keyframes fillBullet {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }
        /* Pause animation when not active */
        
        .bullet:not(.active) .bullet-fill {
            animation: none;
            transform: translateY(100%);
        }
        
        section {
            padding: 60px 0px;
        }
        
        .section-header {
            max-width: 700px;
            margin: 0 auto 50px;
            position: relative;
            padding-bottom: 20px;
        }
        
        .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #222;
        }
        
        .section-header p {
            font-size: 16px;
            color: #555;
            margin-bottom: 10px;
        }
        /* Decorative After Line */
        
        .section-header-shape::after {
            content: "";
            width: 90px;
            height: 12px;
            background: url('data:image/svg+xml;utf8,<svg width="90" height="12" viewBox="0 0 90 12" xmlns="http://www.w3.org/2000/svg"><path d="M0 6 Q22 0 45 6 T90 6" stroke="%230057ff" stroke-width="2" fill="transparent"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .btn-default {
            position: relative;
            display: inline-block;
            font-size: 16px;
            font-weight: 600;
            line-height: 1em;
            text-transform: capitalize;
            background: #292828;
            color: #fff;
            border-radius: 100px;
            padding: 17px 25px;
            margin-right: 50px;
            border: none;
            transition: all 0.5s ease-in-out;
            z-index: 1;
        }
        
        .btn-default::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -50px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--secondary-color) !important;
            background-image: url('../Images/arrow.webp');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 14px auto;
            transform: translateY(-50%);
            transition: all 0.3s ease-in-out;
        }
        
        .btn-default:hover::before {
            transform: translateY(-50%) rotate(45deg);
        }
        
        .btn-default::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            right: 50%;
            opacity: 0;
            background: var(--primary-color);
            border-radius: 100px;
            transition: all 0.4s ease-in-out;
            z-index: -1;
        }
        
        .btn-default:hover::after {
            left: 0;
            right: 0;
            opacity: 1;
        }
        
        .btn-default.btn-highlighted:hover {
            background: transparent;
            color: var(--primary-color);
        }
        
        .btn-default.btn-highlighted::before {
            background-color: var(--white-color);
            background-image: url('../Images/arrow.webp');
        }
        
        .btn-default.btn-highlighted:hover::after {
            background: var(--white-color);
        }
        /* SECTION BACKGROUND */
        
        .wild-points-section {
            padding: 30px 0 0;
            overflow: hidden;
        }
        /* 3 COLUMN GRID */
        
        .wild-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        /* OUTER SKEWED BOX */
        
        .wild-item {
            backdrop-filter: blur(1px) saturate(200%);
            -webkit-backdrop-filter: blur(1px) saturate(200%);
            background-color: rgba(255, 255, 255, 0);
            border: 1px solid rgba(255, 255, 255, 0.125);
            padding: 30px;
            transform: skew(-8deg) !important;
            transition: 0.35s ease;
            border-radius: 6px;
            position: relative;
        }
        /* INNER CONTENT – STRAIGHTEN BACK */
        
        .wild-inner {
            transform: skew(8deg);
            text-align: center;
            z-index: 2;
            position: relative;
        }
        /* ICON */
        
        .wild-icon i {
            font-size: 42px;
            color: #ffffff;
            margin-bottom: 20px;
        }
        /* TITLE */
        
        .wild-item h5 {
            font-size: 22px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
        }
        /* PARAGRAPH */
        
        .wild-item p {
            color: #d6d6d6;
            font-size: 15px;
            line-height: 1.6;
        }
        /* HOVER EFFECT */
        
        .wild-item:hover {
            transform: skew(-8deg) translateY(-10px);
            background: #000000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }
        /* MAIN SECTION */
        
        .about-wildfable-section {
            background: var(--accent-color);
            padding: 90px 0 0;
            color: var(--white-color);
            position: relative;
        }
        
        .wildfable-section-title h2 {
            font-family: 'Rockybilly', cursive !important;
            font-size: 25px;
            letter-spacing: 4px;
            margin-bottom: 30px;
        }
        
        .wildfable-section-title h2 span {
            color: var(--primary-color);
            /* text-shadow: 0 0 12px rgba(246, 140, 61, 0.5); */
        }
        
        .wildfable-section-title p {
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .wildfable-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .wildfable-image-block {
            position: relative;
        }
        
        .wildfable-image-block .main-img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 0 40px rgba(246, 140, 61, 0.35);
            position: relative;
            top: -150px;
        }
        
        .wildfable-image-block .small-img {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 45%;
            border-radius: 12px;
            box-shadow: 0 0 30px rgba(246, 140, 61, 0.4);
            border: 4px solid #000;
            transform: scale(1);
            transition: 0.3s ease;
        }
        
        .wildfable-image-block .small-img:hover {
            transform: scale(1.07);
        }
        
        .wildfable-content-block h3 {
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 600;
            text-shadow: 0 0 10px rgba(246, 140, 61, 0.4);
        }
        
        .wildfable-content-block p {
            opacity: 0.9;
            margin-bottom: 25px;
        }
        
        .wf-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }
        
        .wf-feature {
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.05);
            border-left: 3px solid var(--primary-color);
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s ease;
        }
        
        .wf-feature i {
            color: var(--primary-color);
            font-size: 18px;
        }
        
        .wf-feature:hover {
            background: rgba(246, 140, 61, 0.18);
            transform: translateX(8px);
            box-shadow: 0 0 18px rgba(246, 140, 61, 0.25);
        }
        
        .eyebrow {
            font-size: 12px;
            color: var(--muted);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .signoff-section {
            padding: 60px 0;
            background: #fff;
        }
        
        .signoff-container {
            display: grid;
            grid-template-columns: 1.3fr 1.3fr;
            align-items: center;
            gap: 20px;
            max-width: 1300px;
            margin: auto;
            padding: 0 30px;
        }
        /* LEFT TEXT */
        
        .signoff-line {
            font-size: 25px;
            font-weight: 800;
            line-height: 3;
            /* text-transform: uppercase; */
            /* color: #f47b20; */
            font-family: 'Rockybilly', cursive !important;
            letter-spacing: 4px;
        }
        /* IMAGE */
        
        .signoff-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 12px;
        }
        /* RIGHT CONTENT */
        
        .signoff-content p {
            font-size: 15px;
            line-height: 1.7;
            color: #444;
            margin-bottom: 25px;
        }
        /* STATS */
        /* STATS GRID */
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            border-top: 1px solid transparent;
            border-left: 1px solid transparent;
            border-bottom: 1px solid transparent;
            border-right: 1px solid transparent;
            margin-top: 30px;
            gap: 25px;
        }
        
        .stats-grid .stat-box:nth-child(2),
        .stats-grid .stat-box:nth-child(4) {
            border-right: none;
            /* remove right border on 2nd column */
        }
        
        .stats-grid .stat-box:nth-child(3),
        .stats-grid .stat-box:nth-child(4) {
            border-bottom: none;
            /* remove bottom border on last row */
        }
        
        .stat-box {
            padding: 25px;
            border-right: 1px solid #ddd;
            /* border-bottom: 1px solid #ddd; */
        }
        
        .stat-box h3 {
            font-size: 36px;
            color: #111;
            margin: 0 0 5px;
            font-weight: 800;
        }
        
        .stat-box span {
            font-size: 14px;
            color: #777;
            letter-spacing: 0.3px;
        }
        
        .why-choose-us {
            padding-top: 100px;
            background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
            padding-bottom: 0;
            /* margin-bottom: 50px; */
        }
        
        .why-choose-us h2 {
            font-family: 'Rockybilly', cursive !important;
            font-size: 25px;
            letter-spacing: 4px;
            margin-bottom: 30px;
        }
        
        .story-grid {
            padding: 30px 0 80px;
        }
        
        .story-grid .container .row .col-lg-4,
        .story-grid .container .row .col-md-6 {
            padding: 0 15px;
        }
        
        .story-grid .story-card {
            background: rgba(255, 255, 255, -0.6);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 0.5px solid rgba(45, 45, 45, 0.6);
            border-radius: 28px;
            padding: 30px;
            text-align: center;
            /* box-shadow: 0 12px 45px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8); */
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .story-grid .story-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
            border-radius: 28px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .story-grid .story-card:hover::before {
            opacity: 1;
        }
        
        .story-grid .story-card .icon-image-wrap {
            width: 130px;
            height: 130px;
            margin: 0 auto 0px;
            position: relative;
            display: none;
        }
        
        .story-grid .story-card .icon-image-wrap::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border-radius: 50%;
            opacity: 0.25;
            filter: blur(20px);
            z-index: -1;
        }
        
        .story-grid .story-card .icon-image-wrap::after {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            /* background: linear-gradient(225deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1)); */
            border-radius: 50%;
            z-index: -1;
        }
        
        .story-grid .story-card .icon-image-wrap .icon-image-inner {
            width: 100%;
            height: 100%;
            /* background: #121212; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: none;
            position: relative;
            overflow: hidden;
        }
        
        .story-grid .story-card .icon-image-wrap .icon-image-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transition: left 0.5s ease;
        }
        
        .story-grid .story-card:hover .icon-image-wrap .icon-image-inner::before {
            left: 100%;
        }
        
        .story-grid .story-card .icon-image-wrap .icon-image-inner img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        }
        
        .story-grid .story-card h3 {
            font-size: 22px;
            margin-bottom: 18px;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: -0.3px;
        }
        
        .story-grid .story-card p {
            font-size: 15px;
            line-height: 1.75;
            color: var(--white-color);
            margin: 0;
            font-weight: 400;
        }
        
        .banner-photo-safaris {
            padding-bottom: 0;
            padding-top: 100px;
            position: relative;
            /* bottom: -50px; */
        }
        
        .banner-photo-safaris h2 {
            font-family: 'Rockybilly', cursive !important;
            font-size: 25px;
            letter-spacing: 4px;
            margin-bottom: 30px;
        }
        /* .banner-photo-safaris-content {
    padding-left: 20px;
} */
        
        .banner-bespoke-tours {
            background-image: url(../Images/Tiger-roaring.webp);
            background-position: top;
            background-repeat: no-repeat;
            background-size: cover;
            /* height: 100vh; */
            background-attachment: fixed;
            padding: 100px 0;
            /* margin-bottom: 50px; */
        }
        
        .banner-bespoke-tours {
            color: var(--white-color);
        }
        
        .banner-bespoke-tours h2 {
            padding-left: 10px;
            border-left: 5px solid var(--primary-color);
            font-family: 'Rockybilly', cursive !important;
            font-size: 25px;
            letter-spacing: 4px;
            margin-bottom: 30px;
        }
        /* Parent UL */
        
        .bespoke-tours-links {
            list-style-type: disc;
            /* normal default bullet */
            padding-left: 22px;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(2, 4fr);
            gap: 18px;
            padding-left: 0;
        }
        /* LI items (bullets stay normal) */
        
        .bespoke-tours-links li {
            list-style-position: outside;
            list-style: none;
        }
        /* Link block UI */
        
        .bespoke-tours-links li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 14px;
            border-radius: 10px;
            text-decoration: none;
            font-size: 14px;
            color: #d9f3ff;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: 0.35s;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
        }
        /* Arrow icon AFTER text */
        
        .bespoke-tours-links li a i {
            margin-left: 10px;
            transform: rotate(-45deg);
            transition: 0.35s ease;
            font-size: 13px;
            color: var(--primary-color);
        }
        /* Hover effects */
        
        .bespoke-tours-links li a:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            background: var(--divider-color);
            box-shadow: 0 12px 22px rgba(0, 0, 0, 0.55), 0 0 12px var(--primary-color);
        }
        
        .bespoke-tours-links li a:hover i {
            transform: rotate(0deg);
            color: #fff;
        }
        
        .banner-testimonial {
            background-color: #000;
        }
        
        .banner-testimonial .container {
            display: flex;
            max-width: 1400px;
            margin: 0 auto;
            min-height: 100vh;
        }
        /* Left sidebar - sticky */
        
        .banner-testimonial .sidebar {
            width: 40%;
            background-color: #000000;
            color: white;
            padding: 40px 30px;
            position: sticky;
            top: 0;
            height: 100vh;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        /* Right content area */
        
        .banner-testimonial .content {
            width: 60%;
            padding: 40px;
            overflow-y: auto;
        }
        /* Testimonial grid */
        
        .banner-testimonial .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .banner-testimonial .testimonial-grid .testimonial-card {
            background-color: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .banner-testimonial .testimonial-grid .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .banner-testimonial .testimonial-grid .testimonial-card .rating {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .banner-testimonial .testimonial-grid .testimonial-card .rating-value {
            font-size: 28px;
            font-weight: 700;
            margin-right: 10px;
            color: #1a1a2e;
        }
        
        .banner-testimonial .testimonial-grid .testimonial-card .stars {
            color: #ffc107;
            font-size: 14px;
            letter-spacing: 2px;
        }
        
        .banner-testimonial .testimonial-grid .testimonial-card .testimonial-text {
            margin-bottom: 20px;
            color: #555;
            font-size: 15px;
        }
        
        .banner-testimonial .testimonial-grid .testimonial-card .author-info {
            display: flex;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }
        
        .banner-testimonial .testimonial-grid .testimonial-card .author-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #1a1a2e;
            font-weight: 700;
        }
        
        .banner-testimonial .testimonial-grid .testimonial-card .author-details h4 {
            font-size: 16px;
            margin-bottom: 4px;
            color: #1a1a2e;
        }
        
        .banner-testimonial .testimonial-grid .testimonial-card .author-details p {
            font-size: 14px;
            color: #777;
        }
        /* About Section */
        
        .banner-about {
            overflow: hidden;
            /* background-color: #000; */
            padding: 0;
            background-image: url(../Images/Ocean-view-with-tree.webp);
            height: 100vh;
            background-position: bottom;
            background-size: cover;
            background-repeat: no-repeat;
            padding: 150px 0px;
            display: flex;
            align-items: center;
        }
        
        .banner-about p {
            padding-right: 100px;
        }
        
        .banner-about .banner-photo-safaris-content p {
            line-height: 25px !important;
        }
        
        .banner-about .banner-photo-safaris-content p strong {
            font-family: 'Rockybilly';
            font-size: 11px;
        }
        /* Blog Grid Section */
        
        .blog-section {
            padding: 100px 0 60px;
            background: #1a1a1a;
        }
        
        .blog-section-container {
            margin-bottom: 30px;
        }
        
        .blog-section .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .blog-section .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .blog-section .blog-grid .blog-card {
            background: #2a2a2a;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .blog-section .blog-grid .blog-card:hover {
            border-color: #feca57;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        
        .blog-section .blog-grid .blog-card .blog-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .blog-section .blog-grid .blog-card .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            object-position: bottom;
        }
        
        .blog-section .blog-grid .blog-card:hover .blog-image img {
            transform: scale(1.15) rotate(2deg);
        }
        
        .blog-section .blog-grid .blog-card .blog-image .blog-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            color: #feca57;
            padding: 6px 16px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            display: none;
        }
        
        .blog-section .blog-grid .blog-card .blog-content {
            padding: 25px;
        }
        
        .blog-section .blog-grid .blog-card .blog-content .blog-date {
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }
        
        .blog-section .blog-grid .blog-card .blog-content .blog-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #fff;
        }
        
        .blog-section .blog-grid .blog-card .blog-content .blog-excerpt {
            color: #a0a0a0;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .blog-section .blog-grid .blog-card .blog-content .blog-link {
            color: #feca57;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }
        
        .blog-section .blog-grid .blog-card .blog-content .blog-link:hover {
            gap: 15px;
        }
        /* Background */
        
        .footer {
            background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.9)), url('../Images/Gallery/sunset-lake.webp') center/cover no-repeat;
            color: #ddd;
            position: relative;
            overflow: hidden;
            padding: 60px 0 30px;
        }
        
        .footer-water-mark {
            position: absolute;
            width: 150px;
            left: 80%;
            bottom: 80px;
            opacity: 0.2;
            transform: rotateY(180deg);
        }
        /* Footer titles with ::before */
        
        .footer-title {
            color: #fff;
            font-weight: 600;
            position: relative;
            padding-left: 18px;
        }
        
        .footer-title::before {
            content: "";
            width: 6px;
            height: 100%;
            background: var(--primary-color);
            position: absolute;
            left: 0;
            top: 0;
            border-radius: 3px;
        }
        /* Links */
        
        .footer-links {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 6px;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links li::before {
            content: "•";
            color: var(--primary-color);
            position: absolute;
            left: 0;
            font-size: 18px;
            top: -2px;
        }
        
        .footer-links a {
            text-decoration: none;
            color: #ccc;
            transition: 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #fff;
            padding-left: 5px;
        }
        /* Address */
        
        .footer-address p {
            margin: 0 0 6px;
            color: #ccc;
        }
        /* Social icons */
        
        .footer-social {
            overflow: hidden;
        }
        
        .footer-social a {
            display: inline-block;
            margin-right: 12px;
            color: #fff;
            font-size: 18px;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 10px;
            border-radius: 6px;
            transition: 0.3s;
        }
        
        .footer-social a:hover {
            background: var(--primary-color);
            color: #000;
            transform: translateY(-3px);
        }
        /* Policies */
        
        .footer-policies a {
            color: #ccc;
            margin-left: 15px;
            text-decoration: none;
            position: relative;
        }
        
        .footer-policies a::after {
            content: "";
            width: 0%;
            height: 1px;
            background: var(--primary-color);
            position: absolute;
            left: 0;
            bottom: -3px;
            transition: width 0.3s;
        }
        
        .footer-policies a:hover::after {
            width: 100%;
        }
        
        .footer-policies a:hover {
            color: #fff;
        }
        /* Line */
        
        hr {
            border-color: rgba(255, 255, 255, 0.15);
        }
        /* Copyright */
        
        .copyright {
            font-size: 14px;
        }
        
        #tapToTop {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 45px;
            height: 45px;
            background: var(--primary-color);
            color: #000;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.35s ease;
        }
        /* Show when scrolling */
        
        #tapToTop.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        /* Hover Animation */
        
        #tapToTop:hover {
            box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--secondary-color);
            transform: translateY(-4px);
        }
        
        .adventure-text {
            text-align: center;
            font-family: 'Rockybilly', cursive !important;
        }
        
        .adventure-text h2 {
            font-size: 70px;
        }
        
        .adventure-text {
            text-align: center;
            padding: 80px 0px;
        }
        
        .adventure-text h2 {
            font-size: 72px;
            font-weight: 900;
            line-height: 1.2;
            background-image: url("../Images/Peacock.webp");
            /* <-- your image path */
            background-size: cover;
            background-position: center;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .adventure-text h2 span {
            font-size: 80px;
            display: inline-block;
        }
        
        .Prints-section {
            padding-top: 100px;
            background: #ddd;
        }
        
        .Prints-section .container {
            margin-bottom: 30px;
        }
        
        .print-purchase {
            background: #111;
            padding: 28px;
            border-radius: 18px;
            color: #fff;
        }
        
        .print-purchase .print-purchase__title {
            font-size: 22px;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
        
        .print-purchase .print-purchase__steps {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .print-purchase .print-purchase__steps li {
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
        }
        
        .print-purchase .step-number {
            font-size: 13px;
            font-weight: 600;
            color: #caa85d;
            min-width: 32px;
        }
        
        .print-purchase .print-purchase__steps strong {
            display: block;
            font-size: 15px;
            margin-bottom: 4px;
        }
        
        .print-purchase .print-purchase__steps p {
            font-size: 14px;
            color: #bbb;
            margin: 0;
        }
        /* ROOT COLORS */
        
         :root {
            --primary-color: #f68c3d;
            --secondary-color: #aa6326;
            --white-color: #FFFFFF;
            --accent-color: #000;
            --text-color: #69615D;
            --divider-color: #CD5F371A;
            --dark-divider-color: #FFFFFF1A;
            --transition: all .5s ease-in-out;
        }
        /* MODAL BASE */
        
        .wf-modal .wf-modal-content {
            background: var(--accent-color);
            border-radius: 22px;
            border: 1px solid var(--dark-divider-color);
            color: var(--white-color);
        }
        /* HEADER */
        
        .wf-modal .wf-modal-header {
            border-bottom: 1px solid var(--dark-divider-color);
            padding: 22px 26px;
        }
        
        .wf-modal .wf-modal-title {
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .wf-modal .wf-modal-title span {
            color: var(--primary-color);
        }
        /* BODY */
        
        .wf-modal .wf-modal-body {
            padding: 26px;
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-color);
        }
        
        .wf-modal .wf-lead {
            color: var(--white-color);
            font-size: 16px;
        }
        
        .wf-modal .wf-list {
            padding-left: 18px;
            margin: 18px 0;
        }
        
        .wf-modal .wf-list li {
            margin-bottom: 8px;
            color: var(--white-color);
        }
        
        .wf-modal .wf-closing {
            margin-top: 20px;
            font-style: italic;
            color: var(--white-color);
        }
        /* POLICY CARDS */
        
        .wf-modal .wf-policy-card {
            background: #111;
            border: 1px solid var(--dark-divider-color);
            padding: 18px;
            border-radius: 16px;
            margin-bottom: 14px;
        }
        
        .wf-modal .wf-policy-card h6 {
            color: var(--primary-color);
            margin-bottom: 6px;
        }
        
        .wf-modal .wf-policy-card p {
            margin: 0;
        }
        /* CONTACT BOX */
        
        .wf-modal .wf-policy-contact {
            margin-top: 20px;
            padding: 16px;
            border-radius: 16px;
            background: #0c0c0c;
            text-align: center;
        }
        
        .wf-modal .wf-policy-contact a {
            color: var(--primary-color);
            text-decoration: none;
        }
        /* FOOTER */
        
        .wf-modal .wf-modal-footer {
            border-top: 1px solid var(--dark-divider-color);
            padding: 20px 26px;
        }
        /* BUTTON SYSTEM */
        
        .wf-btn {
            padding: 10px 18px;
            border-radius: 30px;
            font-size: 14px;
            letter-spacing: 0.4px;
            transition: var(--transition);
            border: none;
        }
        
        .wf-btn-solid {
            background: var(--primary-color);
            color: var(--accent-color);
        }
        
        .wf-btn-solid:hover {
            background: var(--secondary-color);
            color: var(--white-color);
        }
        
        .wf-btn-outline {
            background: transparent;
            color: var(--white-color);
            border: 1px solid var(--dark-divider-color);
        }
        
        .wf-btn-outline:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        /* CLOSE BUTTON */
        
        .wf-modal .wf-close {
            filter: invert(1);
        }
        /* Modal */
        
        .print-modal {
            border-radius: 18px;
        }
        
        .print-modal .modal-header {
            border-bottom: none;
        }
        
        .print-modal .modal-title {
            font-size: 20px;
        }
        
        .print-modal .print-modal__section p {
            font-size: 15px;
            line-height: 1.7;
            color: #444;
        }
        
        .print-modal .print-modal__highlight {
            font-style: italic;
            color: #000;
        }
        
        .print-modal .print-modal__section h6 {
            margin-bottom: 12px;
            font-weight: 600;
        }
        /*Bandhavgarh National Park */
        
        .bedcrum {
            position: relative;
            min-height: 80vh;
            background-image: var(--bedcrum-bg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: end;
        }
        /* Overlay */
        
        .bedcrum .bedcrum-overlay {
            position: absolute;
            inset: 0;
            /* background: linear-gradient(
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.65)
    ); */
            z-index: 1;
        }
        /* Content */
        
        .bedcrum .bedcrum-content {
            position: relative;
            z-index: 2;
        }
        
        .bedcrum .bedcrum-content h1 {
            color: #fff;
            font-size: clamp(2.2rem, 4vw, 4rem);
            font-weight: 700;
        }
        
        .bedcrum .bedcrum-content h2 {
            color: rgba(255, 255, 255, 0.9);
            font-style: italic;
            letter-spacing: 2px;
        }
        
        .national-park-story {
            padding: 100px 0px;
        }
        
        .national-park-story img {
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .national-park-story .row {
            margin-bottom: 50px;
        }
        
        .national-park-story-content {
            padding: 35px;
        }
        
        .national-park-story-content h2 {
            font-family: 'Rockybilly';
            font-size: 25px;
            margin-bottom: 30px;
            letter-spacing: 4px;
        }
        
        .national-park-numbers {
            background: radial-gradient(circle at top, #000000, #000000);
            padding: 90px 20px;
            color: #fff;
        }
        
        .national-park-numbers .numbers-title {
            text-align: center;
            font-family: 'Rockybilly';
            font-size: 25px;
            letter-spacing: 4px;
            margin-bottom: 80px;
        }
        
        .national-park-numbers .numbers-grid {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .national-park-numbers .number-card {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 18px;
            padding: 40px 30px;
            text-align: center;
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .national-park-numbers .number-card i {
            font-size: 42px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .national-park-numbers .number-value {
            font-size: 38px;
            font-weight: 700;
        }
        
        .national-park-numbers .number-label {
            font-size: 21px;
            opacity: .9;
            font-weight: 500;
        }
        
        .national-park-numbers .number-desc {
            font-size: 14px;
            opacity: .8;
            margin-top: 8px;
        }
        
        .national-park-itinerary {
            padding: 90px 0px 60px;
            background: #f6f6f4;
        }
        
        .national-park-itinerary .itinerary-wrap {
            max-width: 1000px;
            margin: auto;
        }
        
        .national-park-itinerary h2 {
            text-align: center;
            font-family: 'Rockybilly';
            font-size: 25px;
            letter-spacing: 4px;
            margin-bottom: 60px;
        }
        
        .national-park-itinerary .itinerary-card {
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }
        
        .national-park-itinerary .itinerary-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .national-park-itinerary .itinerary-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .national-park-itinerary .itinerary-card {
            background: #fff;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .national-park-itinerary .itinerary-card i {
            font-size: 36px;
            color: #7a6b43;
            margin-bottom: 20px;
        }
        
        .national-park-itinerary .itinerary-note {
            text-align: center;
            margin-top: 40px;
            color: #666;
            font-size: 14px;
            width: 800px;
            margin: 40px auto 0;
        }
        
        .national-park-enquiry .national-park-enquiry-content {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .national-park-enquiry {
            background: #0f0f0f;
            color: #fff;
            padding: 90px 0px;
        }
        
        .national-park-enquiry .form-wrap {
            max-width: 900px;
            margin: auto;
        }
        
        .national-park-enquiry h2 {
            text-align: center;
            font-family: 'Rockybilly';
            font-size: 25px;
            letter-spacing: 4px;
            margin-bottom: 30px;
        }
        
        .national-park-enquiry .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            align-items: end;
        }
        
        .national-park-enquiry .form-group {
            position: relative;
        }
        
        .national-park-enquiry .form-group i {
            position: absolute;
            top: 14px;
            left: 12px;
            color: var(--primary-color);
        }
        
        .national-park-enquiry input,
        .national-park-enquiry textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #444;
            padding: 12px 12px 12px 40px;
            color: #fff;
        }
        
        .tempus-dominus-widget {
            border-radius: 14px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
        }
        
        .national-park-enquiry textarea {
            grid-column: 1 / -1;
            min-height: 120px;
        }
        
        .national-park-enquiry button {
            margin: 50px auto 0;
            display: block;
            border: 1px solid #fff;
            background: transparent;
            color: #fff;
            padding: 14px 45px;
            letter-spacing: 2px;
            cursor: pointer;
        }
        
        .national-park-enquiry button:hover {
            background: #fff;
            color: #000;
        }
        
        .story-carousel {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        .story-carousel .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 1.2s ease, transform 1.2s ease;
        }
        
        .story-carousel .carousel-slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }
        
        .story-carousel .carousel-slide.prev {
            opacity: 0;
            transform: scale(0.95) translateX(-100px);
        }
        
        .story-carousel .slide-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .story-carousel .slide-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%); */
            z-index: 1;
        }
        /* .story-carousel .slide-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: self-end;
    padding: 0 5%;
    justify-content: flex-start;
    bottom: 10px;
} */
        
        .story-carousel .slide-content {
            position: absolute;
            z-index: 2;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: start;
            padding: 0 5%;
            justify-content: end;
            bottom: 10px;
            flex-direction: column;
        }
        
        .story-carousel .slide-content>span {
            color: #fff;
            text-transform: uppercase;
            font-size: 12px;
            margin-bottom: 5px;
            letter-spacing: 2px;
        }
        
        .story-carousel .content-wrapper {
            max-width: 700px;
            color: white;
            text-align: start;
            transform: translateY(50px);
            opacity: 0;
            backdrop-filter: blur(5px) saturate(200%);
            -webkit-backdrop-filter: blur(0px) saturate(200%);
            background-color: rgba(0, 1, 4, 0.32);
            border-radius: 12px;
            border: none;
            padding: 20px 15px 0px;
        }
        
        .active .content-wrapper {
            animation: slideUp 1s ease forwards 0.3s;
        }
        
        @keyframes slideUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .story-carousel .slide-number {
            font-size: 16px;
            color: #fff;
            margin-bottom: 20px;
            text-transform: uppercase;
            display: none !important;
        }
        
        .story-carousel .slide-title {
            font-family: 'Rockybilly';
            font-size: 20px;
            letter-spacing: 4px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
            line-height: 45px;
        }
        
        .story-carousel .slide-title span {
            color: var(--primary-color) !important;
        }
        
        .story-carousel .carousel-controls {
            position: absolute;
            bottom: 0;
            /* left: 50%; */
            /* transform: translateX(-50%); */
            z-index: 10;
            display: flex;
            gap: 15px;
            align-items: end;
            right: 0;
            right: 20px;
        }
        
        .story-carousel .control-btn {
            display: none;
        }
        
        .story-carousel:hover .control-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-bottom: 0;
            color: white;
            width: 50px;
            height: 40px;
            border-radius: 10px 10px 0 0;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }
        
        .story-carousel .control-btn:hover {
            background: rgba(255, 255, 255, 0.4);
            border-color: white;
            transform: scale(1.1);
        }
        
        .story-carousel .progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .story-carousel .progress-dot.active {
            background: white;
            width: 40px;
            border-radius: 6px;
        }
        
        .story-carousel .auto-play-indicator {
            position: absolute;
            top: 30px;
            right: 30px;
            z-index: 10;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            font-size: 14px;
            display: none;
        }
        
        .story-carousel .progress-indicators {
            /* display: flex; */
            gap: 10px;
            display: none;
        }
        
        .story-carousel .auto-play-indicator:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        @media (max-width: 768px) {
            .slide-title {
                font-size: 2.5rem;
            }
            .slide-text {
                font-size: 1.1rem;
            }
            .carousel-controls {
                /* bottom: 30px; */
                display: flex !important;
            }
            .story-carousel:hover .control-btn {
                display: unset;
            }
            .story-carousel .control-btn {
                background: rgba(255, 255, 255, 0.2);
                border: 2px solid rgba(255, 255, 255, 0.5);
                border-bottom: 0;
                color: white;
                width: 50px;
                height: 40px;
                border-radius: 10px 10px 0 0;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex !important;
                align-items: center;
                justify-content: center;
                backdrop-filter: blur(10px);
            }
        }
        /* Creative animation variants for different slides */
        
        .carousel-slide:nth-child(1) .content-wrapper {
            animation-delay: 0.2s;
        }
        
        .carousel-slide:nth-child(2) .content-wrapper {
            animation-delay: 0.3s;
        }
        
        .carousel-slide:nth-child(3) .content-wrapper {
            animation-delay: 0.4s;
        }
        
        .carousel-slide:nth-child(4) .content-wrapper {
            animation-delay: 0.2s;
        }
        
        .carousel-slide:nth-child(5) .content-wrapper {
            animation-delay: 0.3s;
        }
        
        .carousel-slide:nth-child(6) .content-wrapper {
            animation-delay: 0.4s;
        }
        /* ===== Force custom modal look ===== */
        
        .journey-modal {
            overflow: hidden !important;
        }
        
        .journey-modal .modal-dialog {
            max-width: 1200px;
            overflow: hidden;
        }
        
        .journey-modal .journey-modal-content {
            background: radial-gradient(circle at center, #111 0%, #000 75%);
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 40px 120px rgba(0, 0, 0, 0.85);
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        /* Remove default bootstrap padding */
        
        .journey-modal .modal-body {
            padding: 0;
        }
        /* Close button */
        
        .journey-modal .modal-close {
            position: absolute;
            top: 22px;
            right: 26px;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 18px;
            z-index: 10;
        }
        
        .journey-modal .modal-close:hover {
            color: #f7931e;
        }
        /* Inner layout */
        
        .journey-modal-inner {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 0px;
            padding: 40px 70px;
            align-items: center;
        }
        /* Left text */
        
        .journey-modal-intro h3 {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 18px;
            letter-spacing: 1px;
        }
        
        .journey-modal-intro {
            margin-bottom: 190px;
        }
        
        .journey-modal-intro p {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.75);
            max-width: 380px;
            display: inline-block;
        }
        
        .journey-modal-intro p span {
            font-family: 'Rockybilly';
            color: var(--primary-color);
            letter-spacing: 4px;
            font-size: 10px !important;
            display: block;
            position: relative;
            top: 15px;
        }
        
        .journey-form-wrap {
            background: radial-gradient(circle at center, #111 0%, #000 70%);
            padding: 30px;
            color: #fff;
        }
        
        .journey-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 40px;
            row-gap: 40px;
        }
        
        .journey-form .field {
            position: relative;
            display: flex;
            align-items: baseline;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 14px;
        }
        
        .journey-form .field i {
            color: #f7931e;
            font-size: 14px;
            margin-right: 14px;
            min-width: 18px;
        }
        
        .journey-form input,
        .journey-form textarea {
            width: 100%;
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        
        .journey-form input::placeholder,
        .journey-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .journey-form textarea {
            resize: none;
            height: 70px;
        }
        
        .journey-form .full {
            grid-column: 1 / -1;
        }
        
        .form-action {
            grid-column: 2 / 3;
            display: flex;
            justify-content: flex-end;
            margin-top: 20px;
        }
        
        .form-action button {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            padding: 14px 28px;
            font-size: 14px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        .form-action button:hover {
            background: #f7931e;
            border-color: #f7931e;
            color: #000;
        }
        /* BLogs */
        
        .blog-header-main {
            padding: 90px 0 60px;
            text-align: center;
            background: #111;
            color: #fff;
            position: relative;
            overflow: hidden;
            /* top: -15px; */
            z-index: -1;
        }
        
        .wf-blog-wrapper {
            padding: 90px 0;
            background: #f7f6f3;
            font-family: 'Inter', sans-serif;
        }
        /* INTRO */
        
        .wf-blog-intro {
            margin: 0 auto 60px;
        }
        
        .wf-blog-category {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #b18452;
        }
        
        .wf-blog-title {
            font-size: 33px;
            font-weight: 600;
            margin: 10px 0;
        }
        
        .wf-blog-intro-text {
            font-size: 17px;
            color: #666;
        }
        /* HERO IMAGE */
        
        .wf-blog-hero-image img {
            border-radius: 16px;
            margin-bottom: 70px;
        }
        /* BODY */
        
        .wf-blog-body {
            /* max-width: 900px; */
            margin: auto;
        }
        /* STORY BLOCK */
        
        .wf-story-block {
            margin-bottom: 70px;
        }
        
        .wf-story-lead {
            font-size: 20px;
            /* font-weight: 500; */
            line-height: 1.8;
        }
        
        .wf-story-block p {
            font-size: 16px;
            line-height: 1.9;
        }
        
        .wf-story-text {
            font-size: 16px;
            line-height: 1.9;
        }
        /* SPLIT SECTION */
        
        .wf-story-split {
            margin-bottom: 80px;
        }
        
        .wf-story-image {
            border-radius: 14px;
        }
        
        .wf-story-text h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }
        /* QUOTE */
        /* ===============================
   Blog Story Background Section
================================ */
        
        .wf-blog-sec {
            position: relative;
            width: 100%;
            min-height: 95vh;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            display: flex;
            align-items: start;
            padding: 20px 0;
            overflow: hidden;
        }
        /* Overlay for readability */
        
        .wf-blog-sec .wf-blog-overlay {
            position: absolute;
            inset: 0;
            /* background: linear-gradient( to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75)); */
            z-index: 1;
        }
        /* Keep content above overlay */
        
        .wf-blog-sec .container {
            position: relative;
            z-index: 2;
        }
        /* Content card */
        
        .wf-blog-sec .wf-blog-content {
            /* background: rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px); */
            padding: 40px 45px;
            /* border-left: 4px solid #c9a14a; */
            border-radius: 6px;
        }
        /* Typography */
        
        .wf-blog-sec .wf-blog-content p {
            margin: 0;
            color: #f5f5f5;
            font-size: 18px;
            line-height: 1.8;
            letter-spacing: 0.4px;
        }
        
        .wf-blog-sec-end-image {
            position: relative;
            margin-bottom: 30px;
            margin-top: -50px;
        }
        
        .page-nav .page-nav-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-color);
            background: transparent;
            border: 1px solid #dce3ea;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        /* Hover */
        
        .page-nav .page-nav-btn:hover {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }
        /* Icon animation */
        
        .page-nav .page-nav-btn i {
            font-size: 12px;
            transition: transform 0.25s ease;
        }
        
        .page-nav .page-nav-btn.prev:hover i {
            transform: translateX(-3px);
        }
        
        .page-nav .page-nav-btn.next:hover i {
            transform: translateX(3px);
        }
        /* Mobile */
        
        @media (max-width: 576px) {
            .page-nav .page-nav-btn {
                padding: 5px 12px;
                font-size: 13px;
            }
        }
        /* ===============================
   Responsive
================================ */
        
        @media (max-width: 991px) {
            .wf-blog-sec {
                min-height: 70vh;
                padding: 60px 0;
            }
            .wf-blog-sec .wf-blog-content {
                padding: 30px;
            }
            .wf-blog-sec .wf-blog-content p {
                font-size: 16px;
            }
        }
        
        @media (max-width: 575px) {
            .wf-blog-sec {
                min-height: auto;
                padding: 20px 0 50px;
                background: unset !important;
                flex-direction: column;
            }
            .wf-blog-sec .wf-blog-content {
                padding: 0px 0px 25px;
                border-left-width: 3px;
            }
            .wf-blog-sec .wf-blog-content p {
                font-size: 15px;
                line-height: 1.7;
                color: #000;
            }
        }
        
        .wf-story-quote {
            padding: 50px;
            background: #111;
            color: #fff;
            border-radius: 14px;
            margin-bottom: 80px;
        }
        
        .wf-story-quote p {
            font-size: 22px;
            font-style: italic;
        }
        /* COMPARE */
        
        .wf-compare-box {
            background: #fff;
            padding: 30px;
            border-radius: 14px;
            height: 100%;
            border: 1px solid #000;
        }
        
        .wf-compare-box span {
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #999;
        }
        
        .wf-compare-highlight {
            background: #1c1c1c;
            color: #fff;
        }
        /* FULL IMAGE */
        
        .wf-story-full-image {
            text-align: center;
            margin: 80px 0;
        }
        
        .wf-story-full-image img {
            border-radius: 14px;
        }
        
        .wf-image-note {
            font-size: 13px;
            color: #777;
            margin-top: 10px;
        }
        /* RESPONSIBILITY */
        
        .wf-story-responsibility ul {
            padding-left: 18px;
        }
        
        .wf-story-responsibility li {
            font-size: 16px;
            margin-bottom: 10px;
        }
        /* ENDING */
        
        .wf-story-ending {
            margin-top: 90px;
        }
        
        .wf-ending-highlight {
            font-size: 20px;
            font-weight: 500;
            margin-top: 25px;
        }
        /* RESPONSIVE */
        
        @media (max-width: 768px) {
            .wf-blog-title {
                font-size: 25px;
            }
            .wf-blog-intro {
                margin: 0 auto 30px;
            }
            .wf-story-quote {
                padding: 30px;
            }
            .wf-story-split {
                margin-bottom: 15px;
            }
            .wf-story-block {
                margin-bottom: 0px;
            }
            .wf-story-full-image {
                text-align: center;
                margin: 20px 0 20px;
            }
            .wf-blog-hero-image img {
                border-radius: 16px;
                margin-bottom: 20px;
            }
            .wf-story-ending {
                margin-top: 30px;
            }
        }
        /* Mobile */
        
        @media (max-width: 991px) {
            .journey-modal-intro p span {
                font-size: 9px !important;
            }
            .journey-modal-inner {
                grid-template-columns: 1fr;
                padding: 40px 10px;
                gap: 20px;
            }
            .journey-form {
                display: flex;
                grid-template-columns: unset !important;
                column-gap: 40px;
                row-gap: 20px;
                flex-direction: column;
            }
            .journey-modal-intro {
                margin-bottom: 0px;
                display: none;
            }
            .form-action {
                /* grid-column: 2 / 3; */
                display: flex;
                justify-content: center;
                margin-top: 20px;
            }
        }
        
        .modal-backdrop.show {
            opacity: 0.9;
            background: #000;
        }
        
        .Main-gallery {
            padding-top: 100px;
            padding-bottom: 50px;
            background-image: url(../Images/Album/Shading-background.webp);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: bottom;
        }
        
        .main-gallery-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 50px;
        }
        
        .main-gallery-buttons button {
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 8px 16px;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
            display: inline-flex;
            align-items: center;
        }
        /* Portfolio - Active state with star */
        
        .main-gallery-buttons button:first-child {
            background-color: var(--primary-color);
            color: white;
            border: none;
        }
        /* Star indicator before the active text */
        
        .main-gallery-buttons button:first-child::before {
            content: '★';
            display: inline-block;
            margin-right: 8px;
            font-size: 14px;
        }
        /* Prints - Inactive state */
        
        .main-gallery-buttons button:last-child {
            background-color: #f8f9fa;
            color: #6c757d;
            border: 1px solid #dee2e6;
        }
        /* Hover effects */
        
        .main-gallery-buttons button:first-child:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }
        
        .main-gallery-buttons button:last-child:hover {
            background-color: #e9ecef;
            color: #495057;
        }
        
        .main-gallery-buttons button.active::after {
            content: "";
            position: absolute;
            background-color: var(--primary-color);
            border-radius: 0;
            width: 16px;
            height: 16px;
            top: 32px;
            left: calc(50% - 10px);
            z-index: -1;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }
        
        .main-gallery-buttons button.active:hover::after {
            background-color: var(--accent-color);
        }
        
        .spl-footer {
            text-align: center;
        }
        
        .spotlight-group {
            position: relative;
            width: 100%;
            margin-bottom: 20px;
        }
        
        .spotlight-group .badge-title {
            position: absolute;
            left: 16px;
            bottom: 16px;
            background: rgba(0, 0, 0, 0.75);
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
            backdrop-filter: blur(4px);
        }
        /*
         * Custom Control:
         * ---------------
         */
        /* custom classes are always prefixed by "spl-" automatically */
        
        .spl-like {
            background-image: url(demo/gallery/heart-outline.svg);
            background-size: 23px;
        }
        /* optionally, additional state to toggle the button: */
        
        .spl-like.on {
            background-image: url(demo/gallery/heart.svg);
        }
        /*
         * Custom Animation:
         * -----------------
         */
        /* custom scene transition (slide effect) */
        
        .only-this-gallery.show .spl-scene {
            transition: transform 0.2s ease;
        }
        /* custom animation "visible state" (css context by custom classname "only-this-gallery" to apply these animation just on a specific gallery) */
        
        .only-this-gallery.show .spl-pane>* {
            clip-path: circle(100% at center);
            transition: transform 0.35s ease, opacity 0.65s ease, clip-path 0.8s ease;
        }
        /* custom animation "hidden state" ("custom" is the name of the animation you pass as gallery option) */
        
        .only-this-gallery .spl-pane .custom {
            clip-path: circle(0px at center);
            transition: transform 0.65s ease, opacity 0.65s ease;
        }
        /* animation state when gallery is hidden */
        
        #spotlight.only-this-gallery {
            clip-path: circle(0px at center);
        }
        /* animation state when gallery will open */
        
        #spotlight.only-this-gallery.show {
            clip-path: circle(100% at center);
            transition: clip-path 0.65s ease 0.15s;
        }
        /* faq */
        /* ===== FAQ – Black Theme ===== */
        
        .faq {
            background: #0b0b0b;
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .faq .accordion-item {
            background: #111;
            border: 1px solid #222;
            border-radius: 16px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
        }
        
        .faq .accordion-button {
            background: #111;
            color: #f3f3f3;
            font-weight: 600;
            padding: 16px 18px;
            border: none;
        }
        
        .faq .accordion-button:hover {
            background: #151515;
        }
        
        .faq .accordion-button:focus {
            box-shadow: none;
        }
        
        .faq .accordion-button::after {
            content: '+';
            font-size: 22px;
            font-weight: 700;
            color: #f68c3d;
            /* highlight color */
            background: transparent;
            transform: none;
        }
        
        .faq .accordion-button:not(.collapsed)::after {
            content: '−';
            color: #f68c3d;
        }
        
        .faq .accordion-button:not(.collapsed) {
            background: #141414;
            color: #fff;
            border-bottom: 1px solid #222;
        }
        
        .faq .accordion-body {
            background: #101010;
            color: #cfcfcf;
            line-height: 1.8;
            padding: 16px 18px 18px;
        }
        /* spacing for 2-column layout */
        
        .faq .row.g-3 {
            margin-top: 10px;
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: none !important;
        }
        /* Faq */
        
        
           .social-dropdown {
            position: fixed;
            bottom: 90px;
            right: 25px;
            z-index: 1000;
        }
        
        .social-toggle {
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            display: none;
        }
        
        .social-toggle:hover {
            background-color: #5b4cdb;
        }
        
        .social-menu {
            position: absolute;
            bottom: -10px;
            right: 0px;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 1;
            transform: translateY(10px);
            visibility: visible;
            transition: all 0.2s ease;
        }
        
        .social-dropdown:hover .social-menu {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }
        
        .social-item {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
            color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.2s ease;
            /* Changed to 0.2s as requested */
        }
        
        .social-item:hover {
            transform: scale(1.1);
        }
        
        .social-item.facebook {
            background-color: #3b5998;
        }
        
        .fa-share-nodes {
            color: #fff;
        }
        
        .social-item.twitter {
            background-color: #1da1f2;
        }
        
        .social-item.instagram {
            background-color: #ff1462;
        }
        
        .social-item.linkedin {
            background-color: #0077b5;
        }
        
        .social-item.whatsapp {
            background-color: #48c859;
        }
        
        @media (max-width: 768px) {
            .social-dropdown {
                position: fixed;
                bottom: 185px;
                right: 25px;
                z-index: 1000;
            }
        }
        
        @media (max-width: 576px) {
            .top-nav {
                font-size: 14px;
                text-align: center;
            }
            .top-nav .container {
                flex-direction: column;
                gap: 8px;
            }
            .divider {
                display: none;
            }
        }
        
        @media (min-width: 992px) {
            .navbar .nav-item .dropdown-menu .dropdown-item:hover {
                background: transparent;
                color: var(--primary-color);
                padding-left: 32px;
            }
            .navbar .nav-item .dropdown-menu .dropdown-item::before {
                content: "//";
                position: absolute;
                left: 12px;
                top: 8px;
                color: var(--primary-color);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: -1;
            }
            .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
                opacity: 1;
                visibility: visible;
            }
        }
        /* RESPONSIVE */
        
        @media (max-width: 992px) {
            .wild-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .blog-section .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .wild-grid {
                grid-template-columns: repeat(1, 1fr);
            }
            .blog-section .blog-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .navbar-nav .nav-link {
                color: #000000;
                font-size: 17px;
                border-radius: 30px;
                padding: 8px 10px !important;
                transition: all 0.3s ease;
                position: relative;
                display: inline-block;
                transition: color 0.3s ease;
            }
            .wildfable-image-block .main-img {
                width: 100%;
                border-radius: 15px;
                box-shadow: 0 0 40px rgba(246, 140, 61, 0.35);
                position: relative;
                top: 0px;
            }
        }
        
        @media (max-width: 992px) {
            .wildfable-grid {
                grid-template-columns: 1fr;
                text-align: start;
            }
            .wf-features {
                grid-template-columns: 1fr 1fr !important;
            }
            .wf-feature {
                padding: 14px 10px;
                background: rgba(255, 255, 255, 0.05);
                border-left: none;
                border-bottom: 3px solid var(--primary-color);
                border-radius: 0px;
                display: flex;
                align-items: center;
                gap: 10px;
                transition: 0.3s ease;
                flex-direction: column;
                text-align: center;
            }
            .wildfable-image-block .small-img {
                position: relative;
                bottom: 0;
                right: 0;
                width: 60%;
                margin: 20px auto 0;
                display: block;
            }
        }
        
        @media (max-width: 1024px) {
            .bespoke-tours-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 540px) {
            .bespoke-tours-links {
                grid-template-columns: 1fr;
            }
        }
        /* Responsive design */
        
        @media (max-width: 992px) {
            .banner-testimonial .container {
                flex-direction: column;
            }
            .banner-testimonial .sidebar {
                width: 100%;
                height: auto;
                position: relative;
                padding: 0px 0px;
            }
            .banner-testimonial .content {
                width: 100%;
                padding: 30px 20px;
            }
            .banner-testimonial .testimonial-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .navbar-toggler:focus {
                text-decoration: none;
                outline: 0;
                box-shadow: none !important;
            }
            .banner-testimonial .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }
        /* RESPONSIVE */
        
        @media (max-width: 991px) {
            .signoff-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .signoff-line {
                font-size: 14px;
                margin-top: 15px;
            }
            .signoff-image img {
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            #tapToTop {
                bottom: 60px;
            }
            .banner-photo-safaris {
                padding-bottom: 0;
                padding-top: 80px;
                position: relative;
                bottom: 0px;
            }
            .story-grid {
                padding: 10px 0 60px;
            }
            .story-grid .story-card {
                padding: 45px 30px;
            }
            .story-grid .story-card .icon-image-wrap {
                width: 110px;
                height: 110px;
            }
            .story-grid .story-card .icon-image-wrap .icon-image-inner img {
                width: 60px;
                height: 60px;
            }
            .story-grid .story-card h3 {
                font-size: 20px;
            }
            .story-grid .story-card p {
                font-size: 14px;
            }
        }
        /* ===========================
   TABLET (≤ 992px)
=========================== */
        
        @media (max-width: 992px) {
            .aos-init,
            .aos-animate {
                max-width: 100%;
            }
            /* Numbers */
            .national-park-numbers .numbers-title {
                font-size: 32px;
                margin-bottom: 40px;
            }
            .national-park-numbers .numbers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            /* Itinerary */
            .national-park-itinerary h3 {
                font-size: 30px;
            }
            .national-park-itinerary .itinerary-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            /* Enquiry Form */
            .national-park-enquiry h3 {
                font-size: 30px;
            }
            .national-park-enquiry .form-grid {
                grid-template-columns: 1fr;
            }
        }
        /* ===========================
   MOBILE (≤ 576px)
=========================== */
        
        @media (max-width: 576px) {
            /* Numbers */
            .national-park-numbers {
                padding: 70px 16px;
            }
            .national-park-numbers .numbers-title {
                font-size: 26px;
                line-height: 1.3;
            }
            .national-park-numbers .numbers-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .national-park-numbers .number-card {
                padding: 30px 22px;
            }
            .national-park-numbers .number-value {
                font-size: 32px;
            }
            /* Itinerary */
            .national-park-itinerary {
                padding: 70px 16px;
            }
            .national-park-itinerary h3 {
                font-size: 26px;
                margin-bottom: 40px;
            }
            .national-park-itinerary .itinerary-grid {
                grid-template-columns: 1fr;
            }
            .national-park-itinerary .itinerary-card {
                padding: 28px 22px;
            }
            /* Enquiry */
            .national-park-enquiry {
                padding: 70px 16px;
            }
            .national-park-enquiry h3 {
                font-size: 26px;
                margin-bottom: 40px;
            }
            .national-park-enquiry button {
                width: 100%;
                padding: 14px;
            }
            .national-park-itinerary .itinerary-note {
                text-align: center;
                margin-top: 40px;
                color: #666;
                font-size: 14px;
                width: 100%;
                margin: 40px auto 0;
            }
            .footer-water-mark {
                position: absolute;
                width: 150px;
                left: unset;
                bottom: 150px;
                opacity: 0.2;
                transform: rotateY(180deg);
                right: 0% !important;
            }
        }
        
        @media (max-width: 768px) {
            .slider-container img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
            .slider-container .banner-text h2 {
                white-space: unset;
                line-height: 75px;
                font-weight: 600;
                letter-spacing: 4px;
                font-weight: 700;
                font-size: 20px;
                color: #ffffff;
                /* -webkit-text-stroke: 1px #ffffff; */
                font-family: 'Rockybilly';
                margin-bottom: 0px;
                text-shadow: 1px 1px var(--accent-color);
            }
            .slider-container .btn-prev,
            .slider-container .btn-next {
                visibility: visible !important;
            }
            .btn-prev,
            .btn-next {
                position: absolute;
                top: 90%;
                transform: translateY(-50%);
                background: rgba(0, 0, 0, .5);
                color: #fff;
                padding: 15px 20px;
                border: none;
                cursor: pointer;
                z-index: 20;
                border-radius: 50%;
                font-size: 28px;
                width: 60px;
                height: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .btn-prev {
                right: unset !important;
                left: 80%;
                top: 80%;
            }
            .slider-container .pagination {
                visibility: hidden;
            }
            .slider-container .banner-text {
                position: absolute;
                z-index: 99;
                bottom: 43%;
                color: #fff;
            }
            .banner-bespoke-tours {
                background-image: url(../Images/Tiger-roaring-in-water.webp);
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                /* height: 100vh; */
                background-attachment: unset;
                padding: 100px 0;
                /* margin-bottom: 50px; */
            }
            .banner-bespoke-tours h2 {
                padding-left: 0px;
                border-left: none;
                font-size: 18px;
                letter-spacing: 4px;
                margin-bottom: 30px;
                line-height: 55px;
                text-align: center;
            }
            .banner-photo-safaris h2,
            .wildfable-section-title h2,
            .why-choose-us h2,
            .national-park-numbers .numbers-title,
            .national-park-itinerary h2,
            .national-park-enquiry h2 {
                font-size: 18px;
                letter-spacing: 4px;
                margin-bottom: 30px;
                line-height: 55px;
                text-align: center;
            }
            p br {
                display: none;
            }
            .Main-gallery {
                padding-top: 70px;
            }
            .print-purchase {
                margin: 10px 10px 10px;
            }
            .wf-btn {
                padding: 10px 13px;
                font-size: 13px;
            }
            .banner-about {
                overflow: hidden;
                /* background-color: #000; */
                padding: 0;
                background-image: url(../Images/Ocean-view-with-tree.webp);
                height: auto;
                background-position: bottom;
                background-size: cover;
                background-repeat: no-repeat;
                padding: 100px 15px;
                display: flex;
                align-items: center;
                background-attachment: fixed;
            }
            .banner-about .wildfable-section-title h2 {
                text-align: start !important;
                margin-top: 30px;
            }
            .banner-about p {
                padding-right: 10px;
            }
            .story-grid .story-card {
                background: #1f1f1f;
            }
            .story-carousel .slide-content {
                bottom: 0px;
            }
            .story-carousel .slide-title {
                font-size: 12px;
                letter-spacing: 4px;
                margin-bottom: 15px;
                line-height: 55px;
                text-align: start;
            }
            .story-carousel .slide-content>span {
                color: #fff;
                text-transform: uppercase;
                font-size: 10px;
                margin-bottom: 5px;
                letter-spacing: 2px;
                position: absolute;
                bottom: 40%;
            }
            .story-carousel .content-wrapper {
                max-width: 700px;
                color: #000000;
                text-align: start;
                transform: translateY(50px);
                opacity: 0;
                backdrop-filter: unset;
                -webkit-backdrop-filter: blur(0px) saturate(200%);
                background-color: unset;
                border-radius: 0px;
                border: none;
                padding: 20px 15px 0px;
                margin-bottom: 50px;
            }
            .story-carousel .carousel-controls {
                position: absolute;
                bottom: 40%;
                /* left: 50%; */
                /* transform: translateX(-50%); */
                z-index: 10;
                display: flex;
                gap: 15px;
                align-items: end;
                right: 0;
                right: 20px;
            }
            .story-carousel .carousel-controls {
                bottom: 40% !important;
            }
            .story-carousel .slide-image {
                position: absolute;
                width: 100%;
                height: 60%;
                object-fit: cover;
            }
            .story-carousel .slide-number {
                font-size: 16px;
                color: #000000;
                margin-bottom: 20px;
                text-transform: uppercase;
                display: none !important;
            }
            .carousel-slide.object-left .slide-image {
                object-position: left;
            }
            .carousel-slide.object-right .slide-image {
                object-position: right;
            }
            .carousel-slide.object-bottom .slide-image {
                object-position: bottom;
            }
            .carousel-slide.object-top .slide-image {
                object-position: top;
            }
            .carousel-slide.object-center .slide-image {
                object-position: center;
            }
        }
        
        @media (max-width: 576px) {
            .story-carousel .slide-title {
                font-size: 10px !important;
            }
        }