Home

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jungle Safari Tours – Chitwan National Park, Nepal | Krishna Pariyar</title>
<meta name="description" content="Authentic wildlife safaris in Chitwan National Park led by Krishna Pariyar, born and raised in the jungle. Jungle walking, jeep safari, canoe, tower night stays & Tharu village tours. No middlemen – real local experience.">
<meta name="keywords" content="Chitwan National Park safari, jungle walking safari Nepal, jeep safari Chitwan, canoe safari Rapti river, Tharu village tour, tiger safari Nepal, rhino safari, bird watching Chitwan, homestay Chitwan, Krishna Pariyar guide">
<meta property="og:title" content="Jungle Safari Tours – Chitwan National Park">
<meta property="og:description" content="Born in the jungle. Guided by nature. Real wildlife safaris with local expert Krishna Pariyar.">
<meta property="og:type" content="website">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Mulish:wght@300;400;500;600&family=Bebas+Neue&display=swap" rel="stylesheet">

<style>
  :root {
    --forest: #1a3a1f;
    --deep: #0d2211;
    --moss: #3d6b35;
    --leaf: #5a8f3c;
    --gold: #c8932a;
    --amber: #e8aa3a;
    --cream: #f5f0e8;
    --warm: #faf7f2;
    --earth: #8b6914;
    --river: #2a5f6b;
    --mist: #e8f0e9;
    --text: #1c2417;
    --light-text: #5a6b52;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Mulish', sans-serif;
    background: var(--warm);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ===== NAVIGATION ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(13,34,17,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,147,42,0.3);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
  }
  .nav-logo img {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--gold);
  }
  .nav-logo-text { color: white; }
  .nav-logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--amber); line-height: 1; }
  .nav-logo-text .sub { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); }

  .nav-links {
    display: flex; align-items: center; gap: 0; list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.8px;
    text-transform: uppercase; padding: 0.5rem 0.85rem;
    transition: color 0.2s; white-space: nowrap;
  }
  .nav-links a:hover { color: var(--amber); }
  .nav-cta {
    background: var(--gold); color: white !important;
    padding: 0.5rem 1.2rem !important; border-radius: 3px;
    margin-left: 0.5rem;
  }
  .nav-cta:hover { background: var(--amber); color: white !important; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
  .hamburger span { width: 24px; height: 2px; background: white; display: block; transition: 0.3s; }

  /* ===== PAGES SYSTEM ===== */
  .page { display: none; }
  .page.active { display: block; }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    background: var(--deep);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('/mnt/user-data/uploads/safari_photo_2__Custom_.jpeg') center/cover no-repeat;
    opacity: 0.35;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
  }
  @keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,34,17,0.85) 0%, rgba(13,34,17,0.4) 60%, rgba(42,95,107,0.6) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 750px; padding: 10rem 4rem 6rem;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(200,147,42,0.2); border: 1px solid var(--gold);
    color: var(--amber); font-size: 0.72rem; letter-spacing: 3px;
    text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 2px;
    margin-bottom: 1.5rem;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900; color: white; line-height: 1.05;
    margin-bottom: 1.5rem;
  }
  .hero h1 em { color: var(--amber); font-style: italic; }
  .hero p {
    font-size: 1.1rem; color: rgba(255,255,255,0.8);
    line-height: 1.8; max-width: 560px; margin-bottom: 2.5rem; font-weight: 300;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: white;
    padding: 0.9rem 2.2rem; border-radius: 3px;
    font-weight: 700; font-size: 0.9rem; letter-spacing: 1px;
    text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
    transition: all 0.25s; display: inline-block;
  }
  .btn-primary:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,147,42,0.4); }
  .btn-outline {
    background: transparent; color: white;
    padding: 0.9rem 2.2rem; border-radius: 3px;
    font-weight: 600; font-size: 0.9rem; letter-spacing: 1px;
    text-transform: uppercase; text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: all 0.25s; cursor: pointer; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--amber); color: var(--amber); }

  .hero-stats {
    position: absolute; bottom: 3rem; right: 4rem; z-index: 2;
    display: flex; gap: 2.5rem;
  }
  .stat { text-align: center; }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--amber); line-height: 1; }
  .stat-label { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); }

  /* ===== SECTION STYLES ===== */
  section { padding: 6rem 2rem; }

  .section-label {
    font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 0.7rem;
    display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.15; color: var(--forest);
  }
  .section-title em { color: var(--gold); font-style: italic; }
  .section-body {
    font-size: 1.05rem; color: var(--light-text);
    line-height: 1.85; max-width: 680px;
  }

  .container { max-width: 1200px; margin: 0 auto; }

  /* ===== SAFARIS GRID ===== */
  .safaris-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5px; background: rgba(0,0,0,0.08);
  }
  .safari-card {
    background: white; padding: 2.5rem 2rem;
    cursor: pointer; transition: all 0.3s;
    border-top: 3px solid transparent; position: relative; overflow: hidden;
  }
  .safari-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }
  .safari-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
  .safari-card:hover::before { transform: scaleX(1); }
  .card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
  .card-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--forest); margin-bottom: 0.7rem; }
  .card-desc { font-size: 0.92rem; color: var(--light-text); line-height: 1.7; margin-bottom: 1.2rem; }
  .card-price { font-size: 0.85rem; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; }
  .card-link { font-size: 0.82rem; font-weight: 700; color: var(--moss); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
  .card-link:hover { color: var(--gold); }

  /* ===== WHY US ===== */
  .why-section { background: var(--forest); color: white; }
  .why-section .section-title { color: white; }
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
  .why-item { padding: 1.5rem; border-left: 2px solid rgba(200,147,42,0.4); }
  .why-icon { font-size: 1.8rem; margin-bottom: 1rem; }
  .why-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--amber); margin-bottom: 0.5rem; }
  .why-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

  /* ===== PHOTO STRIP ===== */
  .photo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    height: 280px; overflow: hidden;
  }
  .photo-strip-item {
    overflow: hidden; position: relative;
    transition: flex 0.4s ease;
  }
  .photo-strip-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
  }
  .photo-strip-item:hover img { transform: scale(1.08); }

  /* ===== PAGE HEADER ===== */
  .page-header {
    min-height: 52vh; position: relative;
    display: flex; align-items: flex-end;
    background: var(--deep); overflow: hidden;
  }
  .page-header-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.4;
  }
  .page-header-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,34,17,0.95) 0%, rgba(13,34,17,0.3) 100%);
  }
  .page-header-content {
    position: relative; z-index: 2;
    padding: 4rem 4rem 3.5rem; max-width: 800px;
  }
  .page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: white; font-weight: 900; line-height: 1.1;
    margin-bottom: 0.8rem;
  }
  .page-header p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; }

  /* ===== CONTENT SECTIONS ===== */
  .content-section { padding: 5rem 4rem; max-width: 1100px; margin: 0 auto; }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .two-col-img { border-radius: 4px; overflow: hidden; }
  .two-col-img img { width: 100%; height: 360px; object-fit: cover; display: block; }
  .content-section h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--forest); margin-bottom: 1rem; font-weight: 700; }
  .content-section h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--forest); margin: 2rem 0 0.8rem; }
  .content-section p { color: var(--light-text); line-height: 1.85; font-size: 1rem; margin-bottom: 1.1rem; }
  .content-section ul { margin-left: 1.4rem; color: var(--light-text); line-height: 2; }
  .content-section ul li { margin-bottom: 0.3rem; }

  /* ===== PRICE CARD ===== */
  .price-box {
    background: var(--forest); color: white;
    border-radius: 6px; padding: 2.5rem;
    margin: 2.5rem 0;
  }
  .price-box h3 { color: var(--amber); font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem; }
  .price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .price-row:last-child { border-bottom: none; }
  .price-label { font-size: 0.95rem; color: rgba(255,255,255,0.8); }
  .price-amount { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--amber); }
  .price-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 1rem; font-style: italic; }

  /* ===== HIGHLIGHT BOX ===== */
  .highlight-box {
    background: var(--mist); border-left: 4px solid var(--leaf);
    padding: 1.5rem 2rem; margin: 2rem 0; border-radius: 0 4px 4px 0;
  }
  .highlight-box p { color: var(--forest); font-weight: 500; margin: 0; }

  /* ===== ABOUT PAGE ===== */
  .bio-section {
    background: white; padding: 5rem 4rem;
    max-width: 1100px; margin: 0 auto;
  }
  .bio-grid { display: grid; grid-template-columns: 340px 1fr; gap: 4rem; }
  .bio-img-wrap { position: relative; }
  .bio-img {
    width: 100%; border-radius: 4px; overflow: hidden;
    box-shadow: 20px 20px 0 var(--mist);
  }
  .bio-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
  .bio-badge {
    position: absolute; bottom: -15px; right: -15px;
    background: var(--gold); color: white;
    padding: 1rem 1.5rem; border-radius: 4px;
    font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; text-align: center; line-height: 1.2;
  }
  .timeline { margin-top: 2rem; }
  .timeline-item { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; }
  .timeline-year { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--gold); min-width: 55px; }
  .timeline-text { font-size: 0.95rem; color: var(--light-text); line-height: 1.7; padding-top: 3px; border-left: 2px solid var(--mist); padding-left: 1.2rem; }

  /* ===== PARK PAGE ===== */
  .park-facts {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem; margin: 3rem 0;
  }
  .fact-item {
    background: var(--forest); color: white;
    padding: 1.5rem; border-radius: 4px; text-align: center;
  }
  .fact-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--amber); }
  .fact-desc { font-size: 0.8rem; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; }

  /* ===== GALLERY ===== */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 8px; padding: 2rem;
  }
  .gallery-item {
    overflow: hidden; border-radius: 3px; position: relative;
    aspect-ratio: 4/3; cursor: pointer;
  }
  .gallery-item:nth-child(3n+1) { grid-column: span 2; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-item .gallery-caption {
    position: absolute; inset: 0; background: rgba(13,34,17,0.7);
    display: flex; align-items: flex-end; padding: 1.2rem;
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-caption { opacity: 1; }
  .gallery-caption span { color: white; font-size: 0.85rem; font-weight: 600; }

  /* ===== BLOG ===== */
  .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
  .blog-card { background: white; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.06); }
  .blog-card-img { height: 200px; overflow: hidden; }
  .blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .blog-card:hover .blog-card-img img { transform: scale(1.05); }
  .blog-card-body { padding: 1.5rem; }
  .blog-tag { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
  .blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--forest); margin: 0.5rem 0; line-height: 1.4; }
  .blog-card p { font-size: 0.9rem; color: var(--light-text); line-height: 1.7; }

  /* ===== CONTACT PAGE ===== */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
  .contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--forest); margin-bottom: 1.5rem; }
  .contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
  .contact-icon { font-size: 1.4rem; color: var(--gold); min-width: 30px; }
  .contact-item-text strong { display: block; color: var(--forest); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.2rem; }
  .contact-item-text span { color: var(--light-text); font-size: 0.95rem; line-height: 1.6; }
  .contact-item-text a { color: var(--moss); text-decoration: none; }
  .contact-form { background: var(--forest); padding: 2.5rem; border-radius: 6px; }
  .contact-form h3 { color: var(--amber); font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
    color: white; padding: 0.75rem 1rem; border-radius: 3px; font-family: 'Mulish', sans-serif; font-size: 0.95rem;
    transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold);
  }
  .form-group select option { background: var(--forest); }
  .form-group textarea { height: 100px; resize: vertical; }
  .submit-btn {
    width: 100%; background: var(--gold); color: white;
    border: none; padding: 1rem; border-radius: 3px;
    font-family: 'Mulish', sans-serif; font-weight: 700;
    font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s;
    margin-top: 0.5rem;
  }
  .submit-btn:hover { background: var(--amber); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--deep); color: white;
    padding: 4rem 2rem 2rem;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; max-width: 1200px; margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--amber); margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
  .footer-col h4 { font-size: 0.75rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; cursor: pointer; }
  .footer-col ul a:hover { color: var(--amber); }
  .footer-paypal { background: rgba(255,255,255,0.06); border-radius: 4px; padding: 1rem; margin-top: 0.5rem; }
  .footer-paypal span { font-size: 0.8rem; color: rgba(255,255,255,0.5); display: block; margin-bottom: 0.3rem; }
  .footer-paypal strong { font-size: 0.88rem; color: var(--amber); word-break: break-all; }
  .footer-bottom { max-width: 1200px; margin: 2rem auto 0; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
  .no-middle { font-size: 0.75rem; color: var(--gold); letter-spacing: 1px; }

  /* ===== WILDLIFE LIST ===== */
  .wildlife-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin: 2rem 0; }
  .wildlife-item { background: var(--mist); padding: 1.2rem; border-radius: 4px; text-align: center; }
  .wildlife-item .animal-icon { font-size: 2rem; margin-bottom: 0.4rem; }
  .wildlife-item p { font-size: 0.82rem; color: var(--forest); font-weight: 600; }

  /* ===== SCROLLING TICKER ===== */
  .ticker-wrap { background: var(--gold); overflow: hidden; padding: 0.7rem 0; }
  .ticker { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
  .ticker span { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: white; padding: 0 3rem; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ===== BREADCRUMB ===== */
  .breadcrumb {
    background: var(--mist); padding: 0.8rem 4rem;
    font-size: 0.8rem; color: var(--light-text); display: flex; gap: 0.5rem; align-items: center;
  }
  .breadcrumb a { color: var(--moss); text-decoration: none; cursor: pointer; }
  .breadcrumb a:hover { color: var(--gold); }

  /* ===== TESTIMONIALS ===== */
  .testimonials { background: var(--forest); padding: 5rem 2rem; }
  .testimonials .section-title { color: white; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .testimonial-card { background: rgba(255,255,255,0.07); padding: 2rem; border-radius: 4px; border: 1px solid rgba(200,147,42,0.2); }
  .stars { color: var(--amber); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
  .testimonial-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.75; font-style: italic; margin-bottom: 1.2rem; }
  .testimonial-author { font-size: 0.82rem; font-weight: 700; color: var(--amber); letter-spacing: 1px; }
  .testimonial-country { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

  /* ===== CONSERVATION BAND ===== */
  .conservation-band {
    background: linear-gradient(135deg, var(--river) 0%, var(--forest) 100%);
    padding: 3.5rem 4rem; display: flex; gap: 4rem; align-items: center;
    flex-wrap: wrap;
  }
  .conservation-band .section-title { color: white; font-size: 1.8rem; }
  .conservation-band p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; max-width: 500px; margin-top: 0.8rem; }
  .conservation-stats { display: flex; gap: 3rem; flex-shrink: 0; }
  .cons-stat { text-align: center; }
  .cons-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--amber); line-height: 1; }
  .cons-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

  /* ===== NOTICE ===== */
  .ethics-notice {
    background: #fff8ee; border: 1px solid #e8aa3a40;
    padding: 1.5rem 2rem; border-radius: 4px; margin: 2rem 0;
    display: flex; gap: 1rem; align-items: flex-start;
  }
  .ethics-icon { font-size: 1.5rem; flex-shrink: 0; }
  .ethics-notice p { font-size: 0.9rem; color: var(--earth); line-height: 1.7; }
  .ethics-notice strong { color: var(--forest); }

  /* ===== PAYMENT INFO ===== */
  .payment-info {
    background: var(--mist); padding: 2rem; border-radius: 4px; margin: 2rem 0;
  }
  .payment-info h4 { font-family: 'Playfair Display', serif; color: var(--forest); margin-bottom: 1rem; }
  .payment-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
  .pay-badge { background: white; border: 1px solid rgba(0,0,0,0.1); padding: 0.5rem 1rem; border-radius: 3px; font-size: 0.82rem; font-weight: 600; color: var(--forest); }

  /* ===== MOBILE ===== */
  @media (max-width: 900px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(13,34,17,0.98); padding: 1rem 0; }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.8rem 2rem; }
    .hamburger { display: flex; }
    .hero-content { padding: 8rem 2rem 5rem; }
    .hero-stats { bottom: 1.5rem; right: 2rem; gap: 1.5rem; }
    .stat-num { font-size: 2rem; }
    .photo-strip { grid-template-columns: repeat(3, 1fr); height: 200px; }
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .bio-grid { grid-template-columns: 1fr; }
    .content-section { padding: 3rem 1.5rem; }
    .page-header-content { padding: 3rem 1.5rem 2.5rem; }
    .breadcrumb { padding: 0.8rem 1.5rem; }
    .conservation-band { padding: 3rem 2rem; flex-direction: column; gap: 2rem; }
    .gallery-item:nth-child(3n+1) { grid-column: span 1; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  }
  @media (max-width: 600px) {
    .hero-stats { position: static; margin-top: 2.5rem; justify-content: flex-start; }
    .footer-grid { grid-template-columns: 1fr; }
    .park-facts { grid-template-columns: repeat(2, 1fr); }
  }
</style>
</head>
<body>

<!-- NAVIGATION -->
<nav id="main-nav">
  <a class="nav-logo" onclick="showPage('home')" style="cursor:pointer;">
    <img src="/mnt/user-data/uploads/logo__Custom___Custom_.jpeg" alt="Jungle Safari Tours Logo">
    <div class="nav-logo-text">
      <div class="brand">Jungle Safari Tours</div>
      <div class="sub">Chitwan National Park · Nepal</div>
    </div>
  </a>
  <ul class="nav-links" id="nav-menu">
    <li><a onclick="showPage('home')" style="cursor:pointer;">Home</a></li>
    <li><a onclick="showPage('about')" style="cursor:pointer;">About</a></li>
    <li><a onclick="showPage('park')" style="cursor:pointer;">The Park</a></li>
    <li><a onclick="showPage('walking')" style="cursor:pointer;">Walking</a></li>
    <li><a onclick="showPage('jeep')" style="cursor:pointer;">Jeep</a></li>
    <li><a onclick="showPage('canoe')" style="cursor:pointer;">Canoe</a></li>
    <li><a onclick="showPage('tower')" style="cursor:pointer;">Tower Night</a></li>
    <li><a onclick="showPage('tharu')" style="cursor:pointer;">Tharu</a></li>
    <li><a onclick="showPage('homestay')" style="cursor:pointer;">Homestay</a></li>
    <li><a onclick="showPage('gallery')" style="cursor:pointer;">Gallery</a></li>
    <li><a onclick="showPage('blog')" style="cursor:pointer;">Blog</a></li>
    <li><a onclick="showPage('contact')" class="nav-cta" style="cursor:pointer;">Book Now</a></li>
  </ul>
  <button class="hamburger" id="hamburger" onclick="toggleMenu()">
    <span></span><span></span><span></span>
  </button>
</nav>

<!-- ======================================= -->
<!-- PAGE: HOME -->
<!-- ======================================= -->
<div id="page-home" class="page active">

  <section class="hero">
    <div class="hero-bg" style="background-image: url('/mnt/user-data/uploads/safari_photo_2__Custom_.jpeg');"></div>
    <div class="hero-overlay"></div>
    <div class="hero-content">
      <div class="hero-badge">🌿 Born in the Jungle · Est. 2007</div>
      <h1>Where Wild <em>Chitwan</em> Speaks to Your Soul</h1>
      <p>Real jungle. Real wildlife. Real local guides. Led by Krishna Pariyar — born and raised inside Chitwan National Park — we offer authentic safaris that no resort or travel agency can replicate.</p>
      <div class="hero-btns">
        <button class="btn-primary" onclick="showPage('contact')">Book Your Safari</button>
        <button class="btn-outline" onclick="showPage('about')">Meet Krishna →</button>
      </div>
      <div class="hero-stats">
        <div class="stat"><div class="stat-num">18+</div><div class="stat-label">Years Guiding</div></div>
        <div class="stat"><div class="stat-num">500+</div><div class="stat-label">Bird Species</div></div>
        <div class="stat"><div class="stat-num">1000s</div><div class="stat-label">Happy Guests</div></div>
        <div class="stat"><div class="stat-num">0</div><div class="stat-label">Middlemen</div></div>
      </div>
    </div>
  </section>

  <!-- TICKER -->
  <div class="ticker-wrap">
    <div class="ticker">
      <span>🐆 Tiger Sightings</span><span>🦏 One-Horned Rhino</span><span>🐊 Marsh Crocodile</span><span>🦚 Peacock Displays</span><span>🦅 Over 500 Bird Species</span><span>🌿 Local Guides Only</span><span>🏕️ Tower Night Stays</span><span>🛶 Canoe on Rapti River</span>
      <span>🐆 Tiger Sightings</span><span>🦏 One-Horned Rhino</span><span>🐊 Marsh Crocodile</span><span>🦚 Peacock Displays</span><span>🦅 Over 500 Bird Species</span><span>🌿 Local Guides Only</span><span>🏕️ Tower Night Stays</span><span>🛶 Canoe on Rapti River</span>
    </div>
  </div>

  <!-- PHOTO STRIP -->
  <div class="photo-strip">
    <div class="photo-strip-item"><img src="/mnt/user-data/uploads/deer.jpeg" alt="Spotted deer Chitwan"></div>
    <div class="photo-strip-item"><img src="/mnt/user-data/uploads/birds_indain_rollar__Custom_.jpeg" alt="Indian Roller bird Chitwan"></div>
    <div class="photo-strip-item"><img src="/mnt/user-data/uploads/boat__Custom_.jpeg" alt="Canoe safari Rapti River"></div>
    <div class="photo-strip-item"><img src="/mnt/user-data/uploads/corcodile__Custom_.jpeg" alt="Crocodile Chitwan National Park"></div>
    <div class="photo-strip-item"><img src="/mnt/user-data/uploads/rd_kingfisher__Custom_.jpeg" alt="Kingfisher bird"></div>
    <div class="photo-strip-item"><img src="/mnt/user-data/uploads/jeep_safari__Custom_.jpeg" alt="Jeep safari Chitwan"></div>
  </div>

  <!-- SAFARIS OVERVIEW -->
  <section style="padding: 6rem 2rem; background: var(--warm);">
    <div class="container">
      <span class="section-label">What We Offer</span>
      <h2 class="section-title">Six Ways to <em>Experience</em> Chitwan</h2>
      <p class="section-body" style="margin: 1.2rem 0 3rem;">Every safari is guided by born-and-raised locals. No package tours. No middlemen. You get the real Chitwan — on foot, by jeep, by canoe, or under the stars.</p>
      <div class="safaris-grid">
        <div class="safari-card" onclick="showPage('walking')">
          <div class="card-icon">🥾</div>
          <div class="card-title">Jungle Walking Safari</div>
          <div class="card-desc">Step into the jungle on foot with expert naturalist guides. The most immersive way to encounter wildlife — feel the forest breathe around you.</div>
          <div class="card-price">From NPR 10,000 / group (up to 5 people)</div><br>
          <a class="card-link">Explore →</a>
        </div>
        <div class="safari-card" onclick="showPage('jeep')">
          <div class="card-icon">🚙</div>
          <div class="card-title">Jeep Safari</div>
          <div class="card-desc">Cover more ground on our Mission Tiger tour. The open jeep takes you deep into the park's grasslands and sal forests where tigers and rhinos roam.</div>
          <div class="card-price">Guide fee from NPR 3,000 / shared from NPR 2,000</div><br>
          <a class="card-link">Explore →</a>
        </div>
        <div class="safari-card" onclick="showPage('canoe')">
          <div class="card-icon">🛶</div>
          <div class="card-title">Canoe / Boat Safari</div>
          <div class="card-desc">Glide silently down the Rapti or Narayani river. Spot gharial crocodiles, kingfishers, and bathing rhinos from a traditional dugout canoe.</div>
          <div class="card-price">From NPR 1,000 (30 min) to NPR 5,800 (3 hrs)</div><br>
          <a class="card-link">Explore →</a>
        </div>
        <div class="safari-card" onclick="showPage('tower')">
          <div class="card-icon">🌙</div>
          <div class="card-title">Tower Night Stay</div>
          <div class="card-desc">Sleep in a traditional watch tower overlooking the jungle. Listen to the nighttime chorus of wild Chitwan and watch wildlife pass beneath you at dawn.</div>
          <div class="card-price">NPR 7,000 per bed + guide fee</div><br>
          <a class="card-link">Explore →</a>
        </div>
        <div class="safari-card" onclick="showPage('tharu')">
          <div class="card-icon">🏡</div>
          <div class="card-title">Tharu Village Tour</div>
          <div class="card-desc">Meet the indigenous Tharu people — the original guardians of this forest. Experience their culture, crafts, cooking, and deep connection to nature.</div>
          <div class="card-price">Guide fee NPR 3,000 per group</div><br>
          <a class="card-link">Explore →</a>
        </div>
        <div class="safari-card" onclick="showPage('homestay')">
          <div class="card-icon">🏠</div>
          <div class="card-title">Homestay</div>
          <div class="card-desc">Stay overnight in a local guide's family home. Share meals, stories, and morning jungle walks. This is Chitwan as it truly is — warm, simple, and unforgettable.</div>
          <div class="card-price">NPR 9,500 / room (2 breakfasts, 1 lunch, 1 dinner)</div><br>
          <a class="card-link">Explore →</a>
        </div>
      </div>
    </div>
  </section>

  <!-- WHY US -->
  <section class="why-section">
    <div class="container">
      <span class="section-label" style="color: var(--amber);">Why Choose Us</span>
      <h2 class="section-title">Not a Tour Company. <em>A Family of Guides.</em></h2>
      <div class="why-grid">
        <div class="why-item">
          <div class="why-icon">🌱</div>
          <div class="why-title">Born in the Forest</div>
          <div class="why-text">Our founder Krishna was born in 1981 inside what is now Chitwan National Park. No guidebook can teach what he learned growing up here.</div>
        </div>
        <div class="why-item">
          <div class="why-icon">🤝</div>
          <div class="why-title">No Middlemen</div>
          <div class="why-text">You book directly with us. Your money goes to local guides and their families — not to agencies in Kathmandu or Pokhara.</div>
        </div>
        <div class="why-item">
          <div class="why-icon">🐅</div>
          <div class="why-title">Real Conservation</div>
          <div class="why-text">Krishna has participated in tiger counts, bird surveys, and river cleaning drives. 10% of all profits fund local skills training programs.</div>
        </div>
        <div class="why-item">
          <div class="why-icon">🦜</div>
          <div class="why-title">Ethical Wildlife</div>
          <div class="why-text">We do not offer elephant rides, horse cart tours, or any animal-exploitation activities. Wildlife is observed respectfully — always from a safe distance.</div>
        </div>
        <div class="why-item">
          <div class="why-icon">💰</div>
          <div class="why-title">Group Pricing</div>
          <div class="why-text">All safaris are priced per group — not per person. Bring friends and family for the same great value. The more the merrier (and safer in the forest).</div>
        </div>
        <div class="why-item">
          <div class="why-icon">🗺️</div>
          <div class="why-title">Win-Win Business</div>
          <div class="why-text">Our local guide network shares business equally. Every guide earns fairly. Every guest gets genuine service. That's our promise.</div>
        </div>
      </div>
    </div>
  </section>

  <!-- WILDLIFE TEASER -->
  <section style="padding: 5rem 2rem; background: white;">
    <div class="container">
      <span class="section-label">Wildlife You May See</span>
      <h2 class="section-title" style="margin-bottom: 2.5rem;">Chitwan's <em>Wild Residents</em></h2>
      <div class="wildlife-grid">
        <div class="wildlife-item"><div class="animal-icon">🐅</div><p>Bengal Tiger</p></div>
        <div class="wildlife-item"><div class="animal-icon">🦏</div><p>One-Horned Rhino</p></div>
        <div class="wildlife-item"><div class="animal-icon">🐊</div><p>Marsh Crocodile</p></div>
        <div class="wildlife-item"><div class="animal-icon">🦌</div><p>Spotted Deer</p></div>
        <div class="wildlife-item"><div class="animal-icon">🦚</div><p>Indian Peacock</p></div>
        <div class="wildlife-item"><div class="animal-icon">🐘</div><p>Wild Elephant</p></div>
        <div class="wildlife-item"><div class="animal-icon">🦅</div><p>500+ Bird Species</p></div>
        <div class="wildlife-item"><div class="animal-icon">🐒</div><p>Langur Monkey</p></div>
        <div class="wildlife-item"><div class="animal-icon">🐻</div><p>Sloth Bear</p></div>
        <div class="wildlife-item"><div class="animal-icon">🦭</div><p>Gangetic Dolphin</p></div>
      </div>
    </div>
  </section>

  <!-- TESTIMONIALS -->
  <section class="testimonials">
    <div class="container">
      <span class="section-label" style="color: var(--amber);">Guest Stories</span>
      <h2 class="section-title">Words From the <em>Wild</em></h2>
      <div class="testimonials-grid">
        <div class="testimonial-card">
          <div class="stars">★★★★★</div>
          <div class="testimonial-text">"Krishna took us on a 3-hour walking safari at dawn. We saw a rhino just 30 meters away. His knowledge of the forest was extraordinary — he knew every bird call, every footprint."</div>
          <div class="testimonial-author">Thomas & Maria H.</div>
          <div class="testimonial-country">🇩🇪 Germany</div>
        </div>
        <div class="testimonial-card">
          <div class="stars">★★★★★</div>
          <div class="testimonial-text">"Staying in the tower overnight was magical. Deer and wild boar came right beneath us. Waking up in the jungle to birds calling — this is not a hotel experience. It's real adventure."</div>
          <div class="testimonial-author">James K.</div>
          <div class="testimonial-country">🇦🇺 Australia</div>
        </div>
        <div class="testimonial-card">
          <div class="stars">★★★★★</div>
          <div class="testimonial-text">"I specifically chose Jungle Safari Tours because they do NOT offer elephant rides. Ethical, knowledgeable, and the homestay experience with the family was the highlight of our entire Nepal trip."</div>
          <div class="testimonial-author">Priya S.</div>
          <div class="testimonial-country">🇬🇧 United Kingdom</div>
        </div>
      </div>
    </div>
  </section>

  <!-- CONSERVATION BAND -->
  <div class="conservation-band">
    <div>
      <h2 class="section-title">10% of Every Booking<br><em>Goes to Conservation</em></h2>
      <p>We clean rivers, count tigers, survey birds, and train the next generation of Chitwan's nature guides. When you book with us, you invest in the jungle's future.</p>
    </div>
    <div class="conservation-stats">
      <div class="cons-stat"><div class="cons-num">3</div><div class="cons-label">Tiger Counts<br>Participated</div></div>
      <div class="cons-stat"><div class="cons-num">500+</div><div class="cons-label">Bird Species<br>Surveyed</div></div>
      <div class="cons-stat"><div class="cons-num">10%</div><div class="cons-label">Profit to Skills<br>Training</div></div>
    </div>
  </div>

  <!-- CTA BAND -->
  <section style="background: var(--deep); padding: 5rem 2rem; text-align: center;">
    <span class="section-label" style="display:block; text-align:center;">Ready to Go?</span>
    <h2 style="font-family:'Playfair Display',serif; font-size: clamp(2rem,5vw,3.5rem); color:white; margin-bottom:1.5rem;">The Jungle Is Waiting <em style="color:var(--amber);">For You</em></h2>
    <p style="color:rgba(255,255,255,0.65); max-width:540px; margin:0 auto 2.5rem; font-size:1.05rem; line-height:1.8;">Payment on arrival. No hidden fees. Real local guides. Direct booking. Let's plan your Chitwan adventure today.</p>
    <button class="btn-primary" onclick="showPage('contact')" style="font-size:1rem; padding:1rem 3rem;">Contact Krishna Directly</button>
  </section>

</div><!-- /page-home -->

<!-- ======================================= -->
<!-- PAGE: ABOUT -->
<!-- ======================================= -->
<div id="page-about" class="page">
  <div class="page-header" style="margin-top:70px;">
    <div class="page-header-bg" style="background-image: url('/mnt/user-data/uploads/safari_photo_2__Custom_.jpeg');"></div>
    <div class="page-header-overlay"></div>
    <div class="page-header-content">
      <span class="section-label">Our Story</span>
      <h1>About Us &<br>Krishna Pariyar</h1>
      <p>A life lived between the forest and the river — this is the story of Jungle Safari Tours.</p>
    </div>
  </div>

  <div class="bio-section">
    <div class="bio-grid">
      <div>
        <div class="bio-img-wrap">
          <div class="bio-img">
            <img src="/mnt/user-data/uploads/jeep_safari__Custom_.jpeg" alt="Krishna Pariyar guiding a jeep safari in Chitwan">
          </div>
          <div class="bio-badge">Born 1981<br>Chitwan<br>National Park</div>
        </div>
      </div>
      <div>
        <span class="section-label">Meet the Founder</span>
        <h2 class="section-title">Krishna Pariyar —<br>The Forest is <em>His Home</em></h2>
        <p style="margin-top:1.2rem; color:var(--light-text); line-height:1.85;">Krishna Pariyar was born in 1981 in a small village inside what is now Chitwan National Park — one of Asia's greatest wildlife refuges. In those days, the forest was untouched. Villages were separated by kilometers of wild jungle. Homes were built from grass and bamboo. People lived entirely in harmony with nature: fishing in the rivers, collecting firewood, bartering skills and food.</p>
        <p style="color:var(--light-text); line-height:1.85; margin-top:1rem;">Every night, families took turns sleeping in tall watchtowers to protect their crops from rhinos, deer, and wild elephants. Krishna grew up knowing the jungle not as a destination, but as a neighbour. He watched early tourists arrive in the 1990s and recognized something they could never buy from a guidebook: a life lived inside this ecosystem.</p>
        <p style="color:var(--light-text); line-height:1.85; margin-top:1rem;">In 2007, Krishna founded <strong>Jungle Safari Tours</strong> — a local, community-owned safari operation built on one principle: the best guide is the one who was born here.</p>

        <div class="timeline">
          <div class="timeline-item">
            <div class="timeline-year">1981</div>
            <div class="timeline-text">Born in a Tharu village inside Chitwan National Park, one of Asia's last great wild ecosystems.</div>
          </div>
          <div class="timeline-item">
            <div class="timeline-year">1990s</div>
            <div class="timeline-text">Began guiding early tourists with his father through the jungle, learning the art of wildlife tracking and interpretation.</div>
          </div>
          <div class="timeline-item">
            <div class="timeline-year">2007</div>
            <div class="timeline-text">Founded Jungle Safari Tours — eliminating middlemen and connecting travellers directly to local expert guides.</div>
          </div>
          <div class="timeline-item">
            <div class="timeline-year">Ongoing</div>
            <div class="timeline-text">Participated in tiger counting, Churiya Hills surveys, and bird surveys. Leads river cleaning campaigns and community conservation programs every year.</div>
          </div>
        </div>
      </div>
    </div>
  </div>

  <!-- OUR MODEL -->
  <section style="background: var(--mist); padding: 5rem 2rem;">
    <div class="container">
      <div class="two-col">
        <div>
          <span class="section-label">Our Business Model</span>
          <h2 class="section-title">Win-Win for <em>Everyone</em></h2>
          <p class="section-body" style="margin-top:1.2rem;">We operate as a collective of local guides. Every guide in our network earns fairly from every booking. Tourists receive direct, authentic service. No agents. No commissions eaten by middlemen. No inflated prices. Just people who love the forest, sharing it honestly.</p>
          <p style="color:var(--light-text); margin-top:1rem; line-height:1.85;">Our future plan is to develop proper homestays at each guide's family home — so guests can stay where the guides actually live, eat the food their families cook, and experience Chitwan from the inside out.</p>
          <p style="color:var(--light-text); margin-top:1rem; line-height:1.85; font-weight:600; color:var(--forest);">10% of all profits go to local skills training programs.</p>
        </div>
        <div class="two-col-img">
          <img src="/mnt/user-data/uploads/safari_photo_2__Custom_.jpeg" alt="Local guides leading walking safari in Chitwan">
        </div>
      </div>
    </div>
  </section>

  <!-- ETHICS SECTION -->
  <section style="padding: 5rem 2rem; background: white;">
    <div class="container">
      <span class="section-label">Our Ethics</span>
      <h2 class="section-title">What We Will <em>Never</em> Sell</h2>
      <p class="section-body" style="margin: 1rem 0 2.5rem;">We believe wildlife exists to be observed — never exploited. For this reason, we have made a firm decision not to offer the following activities:</p>
      <div class="ethics-notice">
        <div class="ethics-icon">🚫</div>
        <p><strong>No elephant rides.</strong> Elephant riding causes significant suffering to captive elephants and is not something we will ever offer, regardless of tourist demand.</p>
      </div>
      <div class="ethics-notice">
        <div class="ethics-icon">🚫</div>
        <p><strong>No horse cart village tours.</strong> We believe in walking or responsible jeep access — not using animals as transport for tourist convenience.</p>
      </div>
      <div class="ethics-notice">
        <div class="ethics-icon">✅</div>
        <p><strong>Yes to ethical wildlife observation.</strong> All our safaris maintain respectful distances from wildlife. Your guides are trained naturalists, not entertainers. <strong>The animals always come first.</strong></p>
      </div>
    </div>
  </section>
</div><!-- /page-about -->

<!-- ======================================= -->
<!-- PAGE: PARK -->
<!-- ======================================= -->
<div id="page-park" class="page">
  <div class="page-header" style="margin-top:70px;">
    <div class="page-header-bg" style="background-image: url('/mnt/user-data/uploads/deer.jpeg');"></div>
    <div class="page-header-overlay"></div>
    <div class="page-header-content">
      <span class="section-label">Destination Guide</span>
      <h1>Chitwan National Park</h1>
      <p>Nepal's first national park — a UNESCO World Heritage Site and one of Asia's finest wildlife reserves.</p>
    </div>
  </div>

  <div class="content-section">
    <span class="section-label">Overview</span>
    <h2>Asia's Premier Wildlife <em>Sanctuary</em></h2>
    <div class="park-facts">
      <div class="fact-item"><div class="fact-num">932</div><div class="fact-desc">km² Area</div></div>
      <div class="fact-item"><div class="fact-num">500+</div><div class="fact-desc">Bird Species</div></div>
      <div class="fact-item"><div class="fact-num">68+</div><div class="fact-desc">Bengal Tigers</div></div>
      <div class="fact-item"><div class="fact-num">700+</div><div class="fact-desc">One-Horned Rhino</div></div>
      <div class="fact-item"><div class="fact-num">1984</div><div class="fact-desc">UNESCO WHS</div></div>
    </div>

    <div class="two-col" style="margin-top:3rem;">
      <div>
        <h3>History of Chitwan</h3>
        <p>The name "Chitwan" means "Heart of the Jungle" in Nepali. For centuries, this land in the Terai lowlands was home to the Tharu people, who had developed a natural immunity to malaria and lived sustainably within the forest ecosystem.</p>
        <p>In the 19th century, the region became a royal hunting reserve for Nepal's Shah kings and their British guests. Tigers, rhinos, and crocodiles were hunted in staggering numbers. After Nepal opened to tourism in the 1950s, it became clear that conservation action was urgently needed.</p>
        <p>In 1973, Chitwan was declared Nepal's first national park. In 1984, UNESCO designated it a World Heritage Site. Today, Chitwan is celebrated as one of Asia's greatest conservation success stories — with rhino and tiger populations significantly recovered from historic lows.</p>
        <h3>The Tharu People</h3>
        <p>The Tharu are the indigenous inhabitants of the Terai forests. They lived here for thousands of years before the park was established, developing deep ecological knowledge, unique cultural traditions, and a way of life perfectly adapted to the jungle's rhythms. Our Tharu Village tours honour and support this remarkable community.</p>
      </div>
      <div>
        <div class="two-col-img" style="margin-bottom:1.5rem;">
          <img src="/mnt/user-data/uploads/WhatsApp_Image_2026-05-21_at_6_05_53_AM__Custom_.jpeg" alt="One-horned rhinoceros in Chitwan National Park">
        </div>
        <div class="two-col-img">
          <img src="/mnt/user-data/uploads/deer_resting_on_the_ground__Custom_.jpeg" alt="Deer resting in Chitwan">
        </div>
      </div>
    </div>

    <h3>Habitats &amp; Ecosystems</h3>
    <p>Chitwan's landscape encompasses dense sal forests, tall elephant grass (some over 8 meters high), oxbow lakes, and the braided rivers of the Rapti and Narayani. This diversity of habitat supports an extraordinary range of wildlife:</p>
    <ul>
      <li>Bengal Tiger — apex predator and symbol of the park</li>
      <li>Greater One-Horned Rhinoceros — recovered from near-extinction</li>
      <li>Marsh Mugger and Gharial Crocodile — found in Rapti and Narayani rivers</li>
      <li>Wild Elephant, Leopard, Sloth Bear, Gaur (Indian Bison)</li>
      <li>Spotted Deer, Sambar, Barking Deer, Hog Deer</li>
      <li>500+ bird species including Indian Roller, Giant Hornbill, Kingfisher</li>
      <li>Gangetic River Dolphin — rare and endangered</li>
    </ul>

    <h3>Best Time to Visit</h3>
    <p><strong>October to March</strong> is the ideal season — dry weather, cooler temperatures, and thinning grass makes wildlife sightings more frequent. <strong>April to May</strong> is excellent for bird watching. <strong>June to September</strong> is monsoon season — the park is partially closed but the post-monsoon jungle is lush and green.</p>

    <div class="highlight-box">
      <p>🌿 <strong>Local Tip from Krishna:</strong> The hours between 6am–9am and 4pm–6pm are the best times for wildlife activity. Our early morning walking safaris are specifically timed to maximise your chances of encounters.</p>
    </div>
  </div>
</div><!-- /page-park -->

<!-- ======================================= -->
<!-- PAGE: WALKING SAFARI -->
<!-- ======================================= -->
<div id="page-walking" class="page">
  <div class="page-header" style="margin-top:70px;">
    <div class="page-header-bg" style="background-image: url('/mnt/user-data/uploads/safari_photo_2__Custom_.jpeg');"></div>
    <div class="page-header-overlay"></div>
    <div class="page-header-content">
      <span class="section-label">Safari Experience</span>
      <h1>Jungle Walking Safari</h1>
      <p>The most intimate way to experience Chitwan — on foot, with naturalist guides who were born here.</p>
    </div>
  </div>

  <div class="content-section">
    <div class="two-col">
      <div>
        <span class="section-label">About This Experience</span>
        <h2>Walk Where <em>Tigers Walk</em></h2>
        <p>Nothing compares to exploring the jungle on foot. No engine noise. No barriers. Just you, your guides, the forest floor, and whatever creatures choose to reveal themselves. This is the most authentic wildlife experience in Chitwan.</p>
        <p>Your group will be led by a minimum of two trained naturalist guides — certified by Nepal's Department of National Parks. They read the jungle in real time: fresh footprints in the mud, a broken branch, a startled deer, the alarm call of a peacock — every sign tells a story.</p>
        <p>Morning walks (starting around 6am) offer the highest chance of wildlife sightings. Afternoon walks (3pm start) are excellent for bird watching and golden hour photography.</p>

        <h3>What You Might Encounter</h3>
        <ul>
          <li>One-Horned Rhinoceros — frequently seen near grassland edges</li>
          <li>Spotted Deer and Sambar in the sal forest</li>
          <li>Indian Peacock displaying in clearings</li>
          <li>Giant Hornbill, Kingfisher, and rare forest birds</li>
          <li>Tiger footprints, scrapes, and scat (tiger sightings are always possible)</li>
          <li>Crocodiles basking on river sandbanks</li>
          <li>Langur Monkeys and Rhesus Macaques in the canopy</li>
        </ul>

        <h3>Safety</h3>
        <p>All guides carry emergency communication equipment. Groups are kept small (maximum 8 people, split into two groups of 4). Our safety record over 18 years of guiding is impeccable. Your guides will brief you on safe wildlife behaviour before entering the park.</p>
      </div>
      <div>
        <div class="two-col-img" style="margin-bottom:1.5rem;">
          <img src="/mnt/user-data/uploads/safari_photo_2__Custom_.jpeg" alt="Group walking safari through Chitwan National Park">
        </div>
        <div class="two-col-img">
          <img src="/mnt/user-data/uploads/deer_with_monky__Custom_.jpeg" alt="Deer and monkeys in Chitwan jungle">
        </div>
      </div>
    </div>

    <div class="price-box">
      <h3>💰 Jungle Walking Safari — Prices</h3>
      <div class="price-row"><span class="price-label">Up to 5 people (2 guides included)</span><span class="price-amount">NPR 10,000</span></div>
      <div class="price-row"><span class="price-label">6–7 people (add guide or split groups)</span><span class="price-amount">NPR 10,000 + extra guide</span></div>
      <div class="price-row"><span class="price-label">8–9 people (4 guides, 2 groups)</span><span class="price-amount">NPR 10,000 + extra guides</span></div>
      <div class="price-row"><span class="price-label">Park Entry Permit — Nepali / SAARC</span><span class="price-amount">NPR 1,000 / person</span></div>
      <div class="price-row"><span class="price-label">Park Entry Permit — International</span><span class="price-amount">NPR 2,000 / person</span></div>
      <p class="price-note">* All prices are per group, not per person. Groups of 6+ can choose to walk together or split into smaller groups. Park permit fees are charged separately per person by the park authority.</p>
    </div>

    <div class="highlight-box">
      <p>🦁 <strong>Special Combo: One Day Walking + Canoe Safari</strong> — Walk the jungle in the morning, then canoe the Rapti River in the afternoon. Ask us for a combined package quote.</p>
    </div>

    <button class="btn-primary" onclick="showPage('contact')" style="margin-top:1rem;">Book This Safari</button>
  </div>
</div><!-- /page-walking -->

<!-- ======================================= -->
<!-- PAGE: JEEP SAFARI -->
<!-- ======================================= -->
<div id="page-jeep" class="page">
  <div class="page-header" style="margin-top:70px;">
    <div class="page-header-bg" style="background-image: url('/mnt/user-data/uploads/jeep_safari__Custom_.jpeg');"></div>
    <div class="page-header-overlay"></div>
    <div class="page-header-content">
      <span class="section-label">Safari Experience</span>
      <h1>Jeep Safari — Mission Tiger</h1>
      <p>Cover the full breadth of Chitwan's grasslands and forests in search of tigers, rhinos, and more.</p>
    </div>
  </div>

  <div class="content-section">
    <div class="two-col">
      <div>
        <span class="section-label">About This Experience</span>
        <h2>The Hunt for <em>The Tiger</em></h2>
        <p>Our signature "Mission Tiger" jeep safari takes you deep into the core zones of Chitwan National Park, covering terrain that would take days to cover on foot. Open 4x4 vehicles give you 360-degree sightlines over grasslands and riverbanks where large mammals frequently appear.</p>
        <p>Your guide will direct the driver toward fresh tiger territory based on daily intelligence from rangers and morning tracking reports. While tiger sightings are never guaranteed in the wild, our guides' deep knowledge of animal movements gives you the best possible chance.</p>
        <p>The jeep safari is also outstanding for rhino sightings, wild elephant herds, and the park's extraordinary birdlife — including the endangered Bengal Florican.</p>

        <h3>Jeep Safari Includes</h3>
        <ul>
          <li>Certified naturalist guide throughout</li>
          <li>Open-top 4x4 jeep for unobstructed viewing</li>
          <li>Grassland routes, river crossings, and forest tracks</li>
          <li>Optional stop at Crocodile Breeding Centre (extra fee)</li>
          <li>Morning and afternoon route options available</li>
        </ul>

        <h3>Crocodile Breeding Centre</h3>
        <p>The government-run Gharial Conservation and Breeding Centre near Kasara is a fascinating addition to your jeep safari. Gharial crocodiles — one of the world's most endangered reptiles — are bred here and released into the Narayani River. Ask your guide to include it in your route.</p>
      </div>
      <div>
        <div class="two-col-img" style="margin-bottom:1.5rem;">
          <img src="/mnt/user-data/uploads/jeep_safari__Custom_.jpeg" alt="Open jeep safari in Chitwan National Park">
        </div>
        <div class="two-col-img">
          <img src="/mnt/user-data/uploads/corcodile__Custom_.jpeg" alt="Crocodile on the riverbank in Chitwan">
        </div>
      </div>
    </div>

    <div class="price-box">
      <h3>🚙 Jeep Safari — Prices</h3>
      <div class="price-row"><span class="price-label">4-Hour Safari — Guide Fee Only</span><span class="price-amount">NPR 3,000</span></div>
      <div class="price-row"><span class="price-label">Full Day Safari — Guide Fee Only</span><span class="price-amount">NPR 5,000</span></div>
      <div class="price-row"><span class="price-label">Shared Jeep (4hr) — No Guide Needed</span><span class="price-amount">NPR 2,000/person</span></div>
      <div class="price-row"><span class="price-label">Half Day — Reserved Jeep (up to 10 people)</span><span class="price-amount">NPR 18,500</span></div>
      <div class="price-row"><span class="price-label">Full Day — Reserved Jeep (up to 10 people)</span><span class="price-amount">NPR 27,500</span></div>
      <div class="price-row"><span class="price-label">Park Entry Permit — Nepali / SAARC</span><span class="price-amount">NPR 1,000 / person</span></div>
      <div class="price-row"><span class="price-label">Park Entry Permit — International</span><span class="price-amount">NPR 2,000 / person</span></div>
      <p class="price-note">* Reserved jeep is most comfortable for 6 people. Accommodates up to 10. Guide fee is additional if you book guide service with shared jeep. Park permits are charged by the park authority separately per person. Crocodile Breeding Centre entry fee is extra.</p>
    </div>

    <button class="btn-primary" onclick="showPage('contact')" style="margin-top:1rem;">Book Jeep Safari</button>
  </div>
</div><!-- /page-jeep -->

<!-- ======================================= -->
<!-- PAGE: CANOE SAFARI -->
<!-- ======================================= -->
<div id="page-canoe" class="page">
  <div class="page-header" style="margin-top:70px;">
    <div class="page-header-bg" style="background-image: url('/mnt/user-data/uploads/boat__Custom_.jpeg');"></div>
    <div class="page-header-overlay"></div>
    <div class="page-header-content">
      <span class="section-label">Safari Experience</span>
      <h1>Canoe &amp; Boat Safari</h1>
      <p>Drift silently along the Rapti River — where crocodiles sunbathe and kingfishers flash in the reeds.</p>
    </div>
  </div>

  <div class="content-section">
    <div class="two-col">
      <div>
        <span class="section-label">About This Experience</span>
        <h2>Glide Into the <em>Heart of the River</em></h2>
        <p>A canoe safari on the Rapti River is unlike any other wildlife experience. Traditional dugout wooden canoes — the same style used by Tharu fishermen for generations — carry you silently through one of the park's most wildlife-rich corridors.</p>
        <p>From your low vantage point on the water, you experience the jungle at riverbank level — exactly as the animals do. Marsh mugger crocodiles rest metres away on sandbanks. Gharial crocodiles hang motionless in the shallows. Kingfishers, herons, and storks fish alongside you. Rhinos sometimes wade into the river to cool down, just meters from your canoe.</p>
        <p>The Rapti also forms the northern boundary of the park core zone — meaning wildlife on both banks is abundant and undisturbed.</p>

        <h3>What to Expect</h3>
        <ul>
          <li>Traditional hand-carved dugout canoe, steered by experienced boatman</li>
          <li>Marsh mugger and gharial crocodile sightings almost guaranteed</li>
          <li>Outstanding bird watching: kingfishers, cormorants, egrets, storks, and more</li>
          <li>Possibility of rhino, elephant, and deer sightings on the riverbank</li>
          <li>Morning mist over the river creates extraordinary photographic conditions</li>
          <li>Silent experience — no engine noise, total immersion in nature</li>
        </ul>
      </div>
      <div>
        <div class="two-col-img" style="margin-bottom:1.5rem;">
          <img src="/mnt/user-data/uploads/boat__Custom_.jpeg" alt="Traditional canoe safari on Rapti River Chitwan">
        </div>
        <div class="two-col-img">
          <img src="/mnt/user-data/uploads/rd_kingfisher__Custom_.jpeg" alt="Kingfisher bird on the riverbank Chitwan">
        </div>
      </div>
    </div>

    <div class="price-box">
      <h3>🛶 Canoe Safari — Prices</h3>
      <div class="price-row"><span class="price-label">30-Minute Canoe (group price)</span><span class="price-amount">NPR 1,000</span></div>
      <div class="price-row"><span class="price-label">1-Hour Canoe (group price)</span><span class="price-amount">NPR 2,000</span></div>
      <div class="price-row"><span class="price-label">3-Hour Canoe (group price)</span><span class="price-amount">NPR 5,800</span></div>
      <div class="price-row"><span class="price-label">Guide Fee (added to canoe price)</span><span class="price-amount">NPR 3,000</span></div>
      <div class="price-row"><span class="price-label">Transportation (if required)</span><span class="price-amount">Cost price</span></div>
      <p class="price-note">* Canoe prices are per group. Guide fee is additional and shared across the group. We recommend the 1-hour or 3-hour option for the best wildlife experience. Transport to the river launch point can be arranged if needed.</p>
    </div>

    <div class="highlight-box">
      <p>🛶 <strong>Combo Recommendation:</strong> Combine a morning walking safari with an afternoon canoe trip for a complete Chitwan experience in one day. Ask us about combined pricing.</p>
    </div>

    <button class="btn-primary" onclick="showPage('contact')" style="margin-top:1rem;">Book Canoe Safari</button>
  </div>
</div><!-- /page-canoe -->

<!-- ======================================= -->
<!-- PAGE: TOWER NIGHT -->
<!-- ======================================= -->
<div id="page-tower" class="page">
  <div class="page-header" style="margin-top:70px;">
    <div class="page-header-bg" style="background-image: url('/mnt/user-data/uploads/tower_night__Custom_.jpeg');"></div>
    <div class="page-header-overlay"></div>
    <div class="page-header-content">
      <span class="section-label">Safari Experience</span>
      <h1>Tower Night Stay</h1>
      <p>Sleep in the jungle canopy. Wake to a symphony of wildlife at dawn.</p>
    </div>
  </div>

  <div class="content-section">
    <div class="two-col">
      <div>
        <span class="section-label">About This Experience</span>
        <h2>A Night Above the <em>Wild Jungle</em></h2>
        <p>For centuries, farmers in Chitwan's villages slept in wooden watch towers to protect their crops from rhinos and elephants. Today, those same towers — in community forests and park extension areas — offer one of the most extraordinary wildlife experiences in Nepal.</p>
        <p>As night falls, the jungle transforms. Deer move into clearings. Wild boar root through the undergrowth. On fortunate nights, you may hear the distant roar of a tiger or the crashing footsteps of an elephant herd. The sky, undiluted by light pollution, blazes with stars above the jungle canopy.</p>
        <p>At dawn, the jungle wakes in layers — first insects, then birds, then the deer and peacocks emerging into morning light. Your guide will be with you throughout, explaining every sound and movement.</p>

        <h3>Important Notes</h3>
        <ul>
          <li>Tower stays are only available in community forests and park extension zones — not inside the core park area</li>
          <li>Basic bedding and mosquito nets are provided</li>
          <li>Guide stays the night with your group</li>
          <li>Dinner and breakfast can be arranged with local homestay family nearby</li>
          <li>Best experienced October through March (cool nights, high wildlife activity)</li>
          <li>Not recommended for guests with significant mobility limitations</li>
        </ul>
      </div>
      <div>
        <div class="two-col-img" style="margin-bottom:1.5rem;">
          <img src="/mnt/user-data/uploads/tower_night__Custom_.jpeg" alt="Traditional jungle watch tower night stay Chitwan">
        </div>
        <div class="two-col-img">
          <img src="/mnt/user-data/uploads/deer_resting_on_the_ground__Custom_.jpeg" alt="Deer resting in the grassland at Chitwan">
        </div>
      </div>
    </div>

    <div class="price-box">
      <h3>🌙 Tower Night Stay — Prices</h3>
      <div class="price-row"><span class="price-label">Per Bed (bedding included)</span><span class="price-amount">NPR 7,000</span></div>
      <div class="price-row"><span class="price-label">Guide Fee (per night, per group)</span><span class="price-amount">NPR 3,000</span></div>
      <p class="price-note">* Guide fee is shared across your group. Dinner and breakfast meals can be arranged at additional cost with a nearby local family. Transport to/from tower is included.</p>
    </div>

    <div class="highlight-box">
      <p>🌟 <strong>Recommended Add-On:</strong> Pair your tower night with an early morning walking safari starting at first light — the best possible combination for wildlife sightings.</p>
    </div>

    <button class="btn-primary" onclick="showPage('contact')" style="margin-top:1rem;">Book Tower Night</button>
  </div>
</div><!-- /page-tower -->

<!-- ======================================= -->
<!-- PAGE: THARU VILLAGE -->
<!-- ======================================= -->
<div id="page-tharu" class="page">
  <div class="page-header" style="margin-top:70px;">
    <div class="page-header-bg" style="background-image: url('/mnt/user-data/uploads/WhatsApp_Image_2026-05-21_at_6_05_55_AM__Custom_.jpeg');"></div>
    <div class="page-header-overlay"></div>
    <div class="page-header-content">
      <span class="section-label">Cultural Experience</span>
      <h1>Tharu Village Tour</h1>
      <p>The indigenous people of Chitwan — their culture, crafts, and deep bond with the forest.</p>
    </div>
  </div>

  <div class="content-section">
    <div class="two-col">
      <div>
        <span class="section-label">About the Tharu</span>
        <h2>The Original <em>Guardians of Chitwan</em></h2>
        <p>The Tharu people have lived in the Terai forests of Nepal for thousands of years. They developed a remarkable genetic adaptation to malaria that allowed them to inhabit regions other communities found uninhabitable. Their relationship with the jungle is ancient, intimate, and sustainable.</p>
        <p>Traditional Tharu villages are characterized by long, low houses built from mud, straw, and bamboo — the same materials used for centuries. Intricate geometric patterns are painted on the walls. Family compounds are arranged around shared courtyards. The Tharu language, weaving traditions, stick dances, and ceremonies remain vibrant and alive.</p>
        <p>Our village tour is led by a local Tharu guide who will share the real story of his community — including how the establishment of Chitwan National Park affected Tharu families who were relocated from their ancestral lands, and how the community has worked to find a sustainable relationship with the protected area.</p>

        <h3>What the Tour Includes</h3>
        <ul>
          <li>Walk through a traditional Tharu village with local guide</li>
          <li>Visit family homes and see traditional mud architecture</li>
          <li>Learn about Tharu farming, fishing, and forest practices</li>
          <li>See traditional Tharu weaving and crafts demonstrations</li>
          <li>Optional evening: watch traditional Tharu stick dance performance</li>
          <li>Meet community members and hear their stories</li>
        </ul>
      </div>
      <div>
        <div class="two-col-img" style="margin-bottom:1.5rem;">
          <img src="/mnt/user-data/uploads/WhatsApp_Image_2026-05-21_at_6_05_54_AM__Custom_.jpeg" alt="Tharu village Chitwan Nepal">
        </div>
        <div class="two-col-img">
          <img src="/mnt/user-data/uploads/WhatsApp_Image_2026-05-16_at_10_56_28_PM__Custom_.jpeg" alt="Traditional Tharu culture Chitwan">
        </div>
      </div>
    </div>

    <div class="price-box">
      <h3>🏡 Tharu Village Tour — Prices</h3>
      <div class="price-row"><span class="price-label">Guide Fee (per group)</span><span class="price-amount">NPR 3,000</span></div>
      <p class="price-note">* Group pricing — bring your whole travel party for one guide fee. Duration approximately 2–3 hours. Can be combined with jungle walking safari or canoe safari for a full day of Chitwan culture and nature.</p>
    </div>

    <div class="ethics-notice">
      <div class="ethics-icon">🤝</div>
      <p><strong>Community First.</strong> All village tours are arranged with community consent and benefit local Tharu families directly. We do not offer commercialised "cultural shows" — this is a genuine meeting between travellers and one of Nepal's most remarkable indigenous communities.</p>
    </div>

    <button class="btn-primary" onclick="showPage('contact')" style="margin-top:1rem;">Book Village Tour</button>
  </div>
</div><!-- /page-tharu -->

<!-- ======================================= -->
<!-- PAGE: HOMESTAY -->
<!-- ======================================= -->
<div id="page-homestay" class="page">
  <div class="page-header" style="margin-top:70px;">
    <div class="page-header-bg" style="background-image: url('/mnt/user-data/uploads/WhatsApp_Image_2026-05-21_at_6_05_53_AM__Custom_.jpeg');"></div>
    <div class="page-header-overlay"></div>
    <div class="page-header-content">
      <span class="section-label">Accommodation</span>
      <h1>Homestay Experience</h1>
      <p>Sleep where your guide lives. Eat what his family cooks. Experience Chitwan from the inside.</p>
    </div>
  </div>

  <div class="content-section">
    <div class="two-col">
      <div>
        <span class="section-label">About the Homestay</span>
        <h2>The Most Authentic Night <em>In Chitwan</em></h2>
        <p>You can stay in a resort with a swimming pool. Or you can stay in the home of a man whose father guided tourists through this jungle before there were roads. The choice says everything about the kind of traveller you are.</p>
        <p>Our homestays are in the actual family homes of our local guides — situated in traditional villages on the edge of Chitwan National Park. Simple, clean rooms. Fresh home-cooked Nepali meals. Evenings spent talking around a fire with your host family. Mornings that start with birdsong, strong tea, and a walk into the jungle before the rest of the world wakes up.</p>
        <p>This is how Krishna and his family grew up — and this is what they invite you to share.</p>

        <h3>Homestay Package Includes</h3>
        <ul>
          <li>One private room (double or twin available)</li>
          <li>Two breakfasts</li>
          <li>One lunch</li>
          <li>One dinner</li>
          <li>Evening conversation with host family</li>
          <li>Optional morning walk in community forest</li>
          <li>Transport to/from safari starting point</li>
        </ul>

        <h3>Our Future Plan</h3>
        <p>We are expanding our homestay network so that every local guide in our team has a properly equipped guest room in their home. Our goal is that within the next few years, tourists can choose to stay with any of our guides, distributing income equally across the community.</p>
      </div>
      <div>
        <div class="two-col-img" style="margin-bottom:1.5rem;">
          <img src="/mnt/user-data/uploads/WhatsApp_Image_2026-05-21_at_6_05_53_AM__Custom_.jpeg" alt="Homestay accommodation Chitwan Nepal">
        </div>
        <div class="two-col-img">
          <img src="/mnt/user-data/uploads/WhatsApp_Image_2026-05-21_at_6_05_55_AM__Custom_.jpeg" alt="Local life near Chitwan National Park">
        </div>
      </div>
    </div>

    <div class="price-box">
      <h3>🏠 Homestay — Prices</h3>
      <div class="price-row"><span class="price-label">One Room (includes all meals below)</span><span class="price-amount">NPR 9,500</span></div>
      <div class="price-row"><span class="price-label">Includes: 2 Breakfasts</span><span class="price-amount">✓</span></div>
      <div class="price-row"><span class="price-label">Includes: 1 Lunch</span><span class="price-amount">✓</span></div>
      <div class="price-row"><span class="price-label">Includes: 1 Dinner</span><span class="price-amount">✓</span></div>
      <p class="price-note">* Meals are home-cooked traditional Nepali and Tharu food. Vegetarian meals available. Special dietary requirements can be accommodated with advance notice. Safari activities are priced separately.</p>
    </div>

    <button class="btn-primary" onclick="showPage('contact')" style="margin-top:1rem;">Book Homestay</button>
  </div>
</div><!-- /page-homestay -->

<!-- ======================================= -->
<!-- PAGE: GALLERY -->
<!-- ======================================= -->
<div id="page-gallery" class="page">
  <div class="page-header" style="margin-top:70px; min-height: 35vh;">
    <div class="page-header-bg" style="background-image: url('/mnt/user-data/uploads/pickcook_long_tail__Custom_.jpeg');"></div>
    <div class="page-header-overlay"></div>
    <div class="page-header-content" style="padding-bottom: 2.5rem;">
      <span class="section-label">Wildlife &amp; Experiences</span>
      <h1>Photo Gallery</h1>
      <p>Real photographs from real safaris in Chitwan National Park.</p>
    </div>
  </div>

  <div class="gallery-grid">
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/deer.jpeg" alt="Spotted deer group in Chitwan National Park">
      <div class="gallery-caption"><span>Spotted Deer — Jungle Walking Safari</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/birds_indain_rollar__Custom_.jpeg" alt="Indian Roller bird perched on branch">
      <div class="gallery-caption"><span>Indian Roller — One of 500+ Bird Species</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/boat__Custom_.jpeg" alt="Canoe safari on Rapti River Chitwan">
      <div class="gallery-caption"><span>Canoe Safari — Rapti River</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/deer_with_monky__Custom_.jpeg" alt="Deer and langur monkeys Chitwan">
      <div class="gallery-caption"><span>Deer &amp; Langur Monkeys — Jungle Interior</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/jeep_safari__Custom_.jpeg" alt="Open jeep safari Chitwan National Park">
      <div class="gallery-caption"><span>Jeep Safari — Mission Tiger Tour</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/pickcook_long_tail__Custom_.jpeg" alt="Indian peacock displaying tail feathers">
      <div class="gallery-caption"><span>Indian Peacock — Displaying in the Clearing</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/pickcook_on_the_tree__Custom_.jpeg" alt="Bird perched in forest canopy Chitwan">
      <div class="gallery-caption"><span>Bird Watching — Forest Canopy</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/rd_kingfisher__Custom_.jpeg" alt="Ruddy kingfisher bird Chitwan">
      <div class="gallery-caption"><span>Ruddy Kingfisher — Rapti River</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/safari_photo_2__Custom_.jpeg" alt="Group walking safari Chitwan">
      <div class="gallery-caption"><span>Walking Safari Group — Early Morning</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/tower_night__Custom_.jpeg" alt="Jungle watch tower night stay Chitwan">
      <div class="gallery-caption"><span>Tower Night Stay — Community Forest</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/WhatsApp_Image_2026-05-21_at_6_05_53_AM__Custom_.jpeg" alt="One-horned rhinoceros Chitwan National Park">
      <div class="gallery-caption"><span>One-Horned Rhinoceros — Rapti Riverbank</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/WhatsApp_Image_2026-05-21_at_6_05_54_AM__Custom_.jpeg" alt="Tharu village cultural experience Chitwan">
      <div class="gallery-caption"><span>Tharu Village — Cultural Tour</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/corcodile__Custom_.jpeg" alt="Marsh mugger crocodile Chitwan">
      <div class="gallery-caption"><span>Marsh Mugger Crocodile — Rapti River</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/deer_resting_on_the_ground__Custom_.jpeg" alt="Deer resting in grassland Chitwan">
      <div class="gallery-caption"><span>Spotted Deer Resting — Grassland</span></div>
    </div>
    <div class="gallery-item">
      <img src="/mnt/user-data/uploads/WhatsApp_Image_2026-05-21_at_6_05_55_AM__Custom_.jpeg" alt="Local life near Chitwan National Park">
      <div class="gallery-caption"><span>Local Village Life — Chitwan Buffer Zone</span></div>
    </div>
  </div>
</div><!-- /page-gallery -->

<!-- ======================================= -->
<!-- PAGE: BLOG -->
<!-- ======================================= -->
<div id="page-blog" class="page">
  <div class="page-header" style="margin-top:70px; min-height:38vh;">
    <div class="page-header-bg" style="background-image: url('/mnt/user-data/uploads/birds_indain_rollar__Custom_.jpeg');"></div>
    <div class="page-header-overlay"></div>
    <div class="page-header-content" style="padding-bottom:2.5rem;">
      <span class="section-label">Stories From the Forest</span>
      <h1>The Jungle Blog</h1>
    </div>
  </div>

  <section style="padding: 4rem 2rem; background: var(--warm);">
    <div class="container">
      <div class="blog-grid">
        <div class="blog-card">
          <div class="blog-card-img"><img src="/mnt/user-data/uploads/deer.jpeg" alt="Spotted deer in Chitwan jungle"></div>
          <div class="blog-card-body">
            <div class="blog-tag">Wildlife Guide</div>
            <h3>5 Animals You're Most Likely to See on a Walking Safari</h3>
            <p>Spotted deer are almost guaranteed. Rhinos frequent the grassland edge. Here's what to look for — and where — on your morning walk through the jungle.</p>
          </div>
        </div>
        <div class="blog-card">
          <div class="blog-card-img"><img src="/mnt/user-data/uploads/pickcook_long_tail__Custom_.jpeg" alt="Peacock in Chitwan National Park"></div>
          <div class="blog-card-body">
            <div class="blog-tag">Bird Watching</div>
            <h3>Why Chitwan is One of Asia's Best Bird Watching Destinations</h3>
            <p>Over 500 species recorded — from the Giant Hornbill to the endangered Bengal Florican. A guide to the birds of Chitwan National Park and when to see them.</p>
          </div>
        </div>
        <div class="blog-card">
          <div class="blog-card-img"><img src="/mnt/user-data/uploads/WhatsApp_Image_2026-05-21_at_6_05_54_AM__Custom_.jpeg" alt="Tharu cultural experience Chitwan Nepal"></div>
          <div class="blog-card-body">
            <div class="blog-tag">Culture</div>
            <h3>The Tharu People: Chitwan's Original Forest Guardians</h3>
            <p>Long before the national park existed, the Tharu people lived in harmony with this jungle. Their story is one of resilience, culture, and an unbroken bond with the natural world.</p>
          </div>
        </div>
        <div class="blog-card">
          <div class="blog-card-img"><img src="/mnt/user-data/uploads/tower_night__Custom_.jpeg" alt="Watch tower night stay Chitwan"></div>
          <div class="blog-card-body">
            <div class="blog-tag">Experience Guide</div>
            <h3>Sleeping in the Jungle: What to Expect from a Tower Night Stay</h3>
            <p>No luxury. No Wi-Fi. No distractions. Just the jungle at night, the stars above, and wild animals moving in the darkness below. This is what a real tower night feels like.</p>
          </div>
        </div>
        <div class="blog-card">
          <div class="blog-card-img"><img src="/mnt/user-data/uploads/corcodile__Custom_.jpeg" alt="Crocodile on Rapti River Chitwan"></div>
          <div class="blog-card-body">
            <div class="blog-tag">Conservation</div>
            <h3>Gharial Crocodile: Nepal's Most Endangered Reptile</h3>
            <p>The gharial nearly went extinct in the 20th century. Thanks to Nepal's breeding programs on the Narayani and Rapti rivers, numbers are slowly recovering. Here's the full story.</p>
          </div>
        </div>
        <div class="blog-card">
          <div class="blog-card-img"><img src="/mnt/user-data/uploads/safari_photo_2__Custom_.jpeg" alt="Group jungle walking safari Chitwan"></div>
          <div class="blog-card-body">
            <div class="blog-tag">Travel Tips</div>
            <h3>Best Time to Visit Chitwan: A Month-by-Month Guide</h3>
            <p>From October's post-monsoon freshness to February's peak tiger season, every month offers something different in Chitwan. Here's how to choose the right time for your visit.</p>
          </div>
        </div>
      </div>
    </div>
  </section>
</div><!-- /page-blog -->

<!-- ======================================= -->
<!-- PAGE: CONTACT -->
<!-- ======================================= -->
<div id="page-contact" class="page">
  <div class="page-header" style="margin-top:70px; min-height:40vh;">
    <div class="page-header-bg" style="background-image: url('/mnt/user-data/uploads/boat__Custom_.jpeg');"></div>
    <div class="page-header-overlay"></div>
    <div class="page-header-content" style="padding-bottom:2.5rem;">
      <span class="section-label">Get in Touch</span>
      <h1>Book Your Safari<br>with Krishna</h1>
      <p>No middlemen. No booking fees. Direct contact with your guide.</p>
    </div>
  </div>

  <div class="content-section">
    <div class="contact-grid">
      <div class="contact-info">
        <h3>Reach Us Directly</h3>
        <div class="contact-item">
          <div class="contact-icon">👤</div>
          <div class="contact-item-text">
            <strong>Your Host &amp; Guide</strong>
            <span>Krishna Pariyar<br>Born and raised in Chitwan National Park</span>
          </div>
        </div>
        <div class="contact-item">
          <div class="contact-icon">📍</div>
          <div class="contact-item-text">
            <strong>Location</strong>
            <span>Sauraha, Chitwan National Park<br>Chitwan District, Nepal</span>
          </div>
        </div>
        <div class="contact-item">
          <div class="contact-icon">📧</div>
          <div class="contact-item-text">
            <strong>Email / PayPal</strong>
            <span><a href="mailto:Pariyarkrishnaja@gmail.com">Pariyarkrishnaja@gmail.com</a></span>
          </div>
        </div>
        <div class="contact-item">
          <div class="contact-icon">🌐</div>
          <div class="contact-item-text">
            <strong>Languages</strong>
            <span>Nepali, English, Tharu, Hindi</span>
          </div>
        </div>

        <div class="payment-info" style="margin-top:2rem;">
          <h4>💳 Payment Information</h4>
          <p style="font-size:0.9rem; color:var(--light-text); line-height:1.7;">Payment is normally made on arrival in cash (Nepali Rupees). For advance bookings or deposits, we accept PayPal:</p>
          <div style="background:white; border-radius:4px; padding:0.75rem 1rem; margin-top:0.8rem; font-size:0.88rem; color:var(--forest); font-weight:600; border:1px solid rgba(0,0,0,0.08);">
            💰 PayPal: Pariyarkrishnaja@gmail.com
          </div>
          <div class="payment-badges">
            <div class="pay-badge">💵 Cash on Arrival</div>
            <div class="pay-badge">🅿️ PayPal</div>
            <div class="pay-badge">📲 Bank Transfer</div>
          </div>
        </div>

        <div class="highlight-box" style="margin-top:2rem;">
          <p>📅 <strong>Best response time:</strong> We aim to reply within 24 hours. For urgent bookings, please mention your travel date in the subject line.</p>
        </div>
      </div>

      <div>
        <div class="contact-form">
          <h3>Send an Enquiry</h3>
          <div class="form-group">
            <label>Your Name</label>
            <input type="text" placeholder="Full name">
          </div>
          <div class="form-group">
            <label>Email Address</label>
            <input type="email" placeholder="your@email.com">
          </div>
          <div class="form-group">
            <label>Country</label>
            <input type="text" placeholder="Where are you from?">
          </div>
          <div class="form-group">
            <label>Safari of Interest</label>
            <select>
              <option>Jungle Walking Safari</option>
              <option>Jeep Safari (Mission Tiger)</option>
              <option>Canoe / Boat Safari</option>
              <option>Tower Night Stay</option>
              <option>Tharu Village Tour</option>
              <option>Homestay</option>
              <option>Combined / Multi-Day Package</option>
            </select>
          </div>
          <div class="form-group">
            <label>Number of People in Group</label>
            <select>
              <option>1–2 people</option>
              <option>3–5 people</option>
              <option>6–8 people</option>
              <option>9–12 people</option>
              <option>13+ people</option>
            </select>
          </div>
          <div class="form-group">
            <label>Planned Travel Date</label>
            <input type="text" placeholder="Approximate dates, e.g. Oct 15-18">
          </div>
          <div class="form-group">
            <label>Your Message</label>
            <textarea placeholder="Tell us about your trip — any special interests, questions, or requests..."></textarea>
          </div>
          <button class="submit-btn" onclick="submitForm()">Send Enquiry to Krishna →</button>
        </div>
      </div>
    </div>
  </div>
</div><!-- /page-contact -->

<!-- ======================================= -->
<!-- FOOTER -->
<!-- ======================================= -->
<footer>
  <div class="footer-grid">
    <div class="footer-brand">
      <div class="brand-name">🌿 Jungle Safari Tours</div>
      <p>Born in the jungle. Guided by nature. Run by the community. Krishna Pariyar and his team of local guides offer the most authentic wildlife experience in Chitwan National Park, Nepal.</p>
      <div style="margin-top:1.5rem;">
        <div class="footer-paypal">
          <span>PayPal / Email</span>
          <strong>Pariyarkrishnaja@gmail.com</strong>
        </div>
      </div>
    </div>
    <div class="footer-col">
      <h4>Our Safaris</h4>
      <ul>
        <li><a onclick="showPage('walking')">Walking Safari</a></li>
        <li><a onclick="showPage('jeep')">Jeep Safari</a></li>
        <li><a onclick="showPage('canoe')">Canoe Safari</a></li>
        <li><a onclick="showPage('tower')">Tower Night</a></li>
        <li><a onclick="showPage('tharu')">Tharu Village</a></li>
        <li><a onclick="showPage('homestay')">Homestay</a></li>
      </ul>
    </div>
    <div class="footer-col">
      <h4>Information</h4>
      <ul>
        <li><a onclick="showPage('about')">About Krishna</a></li>
        <li><a onclick="showPage('park')">About the Park</a></li>
        <li><a onclick="showPage('gallery')">Photo Gallery</a></li>
        <li><a onclick="showPage('blog')">Blog</a></li>
        <li><a onclick="showPage('contact')">Contact Us</a></li>
      </ul>
    </div>
    <div class="footer-col">
      <h4>Chitwan National Park</h4>
      <p style="font-size:0.85rem; color:rgba(255,255,255,0.5); line-height:1.8;">Sauraha, Chitwan District<br>Province 3, Nepal<br><br>UNESCO World Heritage Site since 1984.<br>Nepal's first national park.</p>
    </div>
  </div>
  <div class="footer-bottom">
    <p>© 2025 Jungle Safari Tours · Krishna Pariyar · Chitwan, Nepal · All Rights Reserved</p>
    <div class="no-middle">🤝 No Middlemen · Direct to Local Guides</div>
  </div>
</footer>

<script>
  function showPage(id) {
    document.querySelectorAll('.page').forEach(p => p.classList.remove('active'));
    const page = document.getElementById('page-' + id);
    if (page) {
      page.classList.add('active');
      window.scrollTo({ top: 0, behavior: 'smooth' });
    }
    // Close mobile menu
    document.getElementById('nav-menu').classList.remove('open');
  }

  function toggleMenu() {
    document.getElementById('nav-menu').classList.toggle('open');
  }

  function submitForm() {
    alert('Thank you for your enquiry! Krishna will reply to you within 24 hours.\n\nYou can also email directly: Pariyarkrishnaja@gmail.com');
  }

  // Smooth scroll reveal on home page
  const observer = new IntersectionObserver((entries) => {
    entries.forEach(e => {
      if (e.isIntersecting) e.target.style.opacity = '1';
    });
  }, { threshold: 0.1 });
</script>
</body>
</html>
Scroll to Top