		{"id":6,"date":"2026-06-11T02:21:27","date_gmt":"2026-06-11T01:21:27","guid":{"rendered":"https:\/\/trekhimalayantrails.com\/?page_id=6"},"modified":"2026-06-12T11:32:22","modified_gmt":"2026-06-12T10:32:22","slug":"home","status":"publish","type":"page","link":"https:\/\/trekhimalayantrails.com\/","title":{"rendered":""},"content":{"rendered":"\n<style data-wp-block-html=\"css\">\n\/* ===========================\n   TREK HIMALAYAN TRAILS\n   styles.css\n   =========================== *\/\n\n@import url('https:\/\/fonts.googleapis.com\/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&display=swap');\n\n*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }\n\n:root {\n  --red:      #C8102E;\n  --red-dark: #A00D25;\n  --black:    #111111;\n  --white:    #FFFFFF;\n  --cream:    #FAFAF8;\n  --cream-2:  #F2F0EB;\n  --gray:     #6B6B6B;\n  --gray-lt:  #E8E6E1;\n  --serif:    'Playfair Display', Georgia, serif;\n  --sans:     'Inter', system-ui, sans-serif;\n}\n\nhtml { scroll-behavior: smooth; }\nbody { font-family: var(--sans); background: var(--cream); color: var(--black); line-height: 1.6; overflow-x: hidden; }\na { text-decoration: none; color: inherit; }\nimg { display: block; max-width: 100%; }\nul { list-style: none; }\n\n\/* ---------- TOP BAR ---------- *\/\n.topbar { background: var(--black); color: var(--white); font-size: .75rem; padding: 8px 0; }\n.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }\n.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }\n.topbar a { color: #ccc; transition: color .2s; }\n.topbar a:hover { color: var(--white); }\n.topbar span { color: #888; }\n\n\/* ---------- NAVBAR ---------- *\/\n.navbar { background: var(--white); border-bottom: 1px solid var(--gray-lt); position: sticky; top: 0; z-index: 1000; }\n.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }\n\n.logo { display: flex; align-items: center; gap: 10px; }\n.logo-icon { width: 38px; height: 38px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }\n.logo-icon svg { width: 20px; height: 20px; }\n.logo-text { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; line-height: 1.2; color: var(--black); }\n.logo-text span { color: var(--red); }\n\n\/* Nav menu *\/\n.nav-menu { display: flex; align-items: center; gap: 2px; }\n\n.nav-item { position: relative; }\n\n.nav-link {\n  display: flex; align-items: center; gap: 4px;\n  padding: 8px 13px; font-size: .875rem; font-weight: 600;\n  color: var(--black); border-radius: 4px;\n  transition: color .2s, background .2s; white-space: nowrap;\n}\n.nav-link:hover, .nav-item.open > .nav-link { color: var(--red); background: #fef2f4; }\n.nav-link .chevron { width: 14px; height: 14px; transition: transform .2s; flex-shrink: 0; }\n.nav-item.open > .nav-link .chevron { transform: rotate(180deg); }\n\n\/* ---- DROPDOWN PANEL ---- *\/\n\/* Hidden by default; shown via JS .open class on the parent li *\/\n.dropdown {\n  display: none;\n  position: absolute;\n  top: 100%;          \/* flush to bottom of nav-link \u2014 no gap *\/\n  left: 0;\n  background: var(--white);\n  border: 1px solid var(--gray-lt);\n  border-radius: 8px;\n  box-shadow: 0 12px 40px rgba(0,0,0,.12);\n  padding: 8px 0;\n  z-index: 200;\n  \/* Invisible top extension so the mouse can travel from link into panel *\/\n  margin-top: 0;\n}\n\n\/* Invisible bridge: fills the 1px gap between link bottom and panel top *\/\n.dropdown::before {\n  content: '';\n  position: absolute;\n  top: -8px; left: 0; right: 0;\n  height: 8px;\n}\n\n.nav-item.open > .dropdown { display: flex; }\n\n\/* Wide 3-column dropdown *\/\n.dropdown.dropdown-wide {\n  min-width: 580px;\n  flex-direction: row;\n  gap: 0;\n  padding: 24px;\n}\n.dropdown-col { flex: 1; min-width: 160px; padding: 0 12px; }\n.dropdown-col:first-child { padding-left: 0; }\n.dropdown-col:last-child { padding-right: 0; border-right: none; }\n.dropdown-col + .dropdown-col { border-left: 1px solid var(--gray-lt); }\n\n.dropdown-col h4 {\n  font-size: .68rem; font-weight: 700; letter-spacing: .1em;\n  text-transform: uppercase; color: var(--red);\n  margin-bottom: 10px; padding-bottom: 8px;\n  border-bottom: 1px solid var(--gray-lt);\n}\n.dropdown-col a {\n  display: flex; align-items: center; gap: 8px;\n  padding: 7px 0; font-size: .82rem; color: var(--gray);\n  transition: color .2s; white-space: nowrap;\n}\n.dropdown-col a:hover { color: var(--red); }\n.dropdown-col a svg { width: 13px; height: 13px; flex-shrink: 0; }\n\n\/* Small single-column dropdown *\/\n.dropdown.dropdown-sm {\n  flex-direction: column;\n  min-width: 200px;\n  padding: 8px 0;\n}\n.dropdown.dropdown-sm a {\n  display: block;\n  padding: 9px 20px;\n  font-size: .875rem;\n  color: var(--black);\n  transition: background .15s, color .15s;\n  white-space: nowrap;\n}\n.dropdown.dropdown-sm a:hover { background: #fef2f4; color: var(--red); }\n\n\/* Nav CTA *\/\n.nav-cta {\n  background: var(--red) !important;\n  color: var(--white) !important;\n  border-radius: 4px;\n  padding: 10px 20px !important;\n  font-weight: 700;\n  margin-left: 8px;\n}\n.nav-cta:hover { background: var(--red-dark) !important; }\n\n\/* Hamburger *\/\n.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }\n.hamburger span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: .3s; }\n\n\/* ---------- CONTAINER ---------- *\/\n.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }\n\n\/* ---------- HERO ---------- *\/\n.hero {\n  position: relative; height: 92vh; min-height: 580px;\n  overflow: hidden; display: flex; align-items: flex-end;\n}\n.hero-bg {\n  position: absolute; inset: 0;\n  background-size: cover; background-position: center;\n  opacity: .75;\n}\n.hero-overlay {\n  position: absolute; inset: 0;\n  background: linear-gradient(to top, rgba(0,0,0,.88) 25%, rgba(0,0,0,.25) 70%, rgba(0,0,0,.1) 100%);\n}\n.hero-content { position: relative; z-index: 2; padding: 80px 0 60px; width: 100%; }\n.hero-content .container { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }\n\n.hero-text { max-width: 640px; }\n.hero-eyebrow {\n  display: inline-flex; align-items: center; gap: 8px;\n  background: rgba(200,16,46,.15); border: 1px solid rgba(200,16,46,.4);\n  color: #ff6b81; font-size: .72rem; font-weight: 700;\n  letter-spacing: .12em; text-transform: uppercase;\n  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;\n}\n.hero-eyebrow span { width: 6px; height: 6px; background: #ff6b81; border-radius: 50%; animation: pulse 1.5s infinite; }\n@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }\n\n.hero-title {\n  font-family: var(--serif); font-size: clamp(2.4rem,5vw,4rem);\n  font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px;\n}\n.hero-title em { color: var(--red); font-style: normal; }\n.hero-subtitle { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 480px; margin-bottom: 32px; line-height: 1.7; }\n.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }\n\n.btn-primary {\n  background: var(--red); color: white; padding: 14px 28px; border-radius: 4px;\n  font-weight: 700; font-size: .9rem; border: 2px solid var(--red); cursor: pointer;\n  transition: background .2s, transform .1s; display: inline-flex; align-items: center; gap: 8px;\n}\n.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }\n\n.btn-ghost {\n  color: white; padding: 14px 28px; border-radius: 4px; font-weight: 600; font-size: .9rem;\n  border: 2px solid rgba(255,255,255,.4); cursor: pointer;\n  transition: border-color .2s, background .2s; display: inline-flex; align-items: center; gap: 8px;\n}\n.btn-ghost:hover { border-color: white; background: rgba(255,255,255,.08); }\n\n.hero-stats { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }\n.stat-box {\n  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);\n  border: 1px solid rgba(255,255,255,.15); border-radius: 8px;\n  padding: 14px 22px; text-align: center; min-width: 118px;\n}\n.stat-box .num { font-family: var(--serif); font-size: 2rem; font-weight: 900; color: white; display: block; line-height: 1; }\n.stat-box .lbl { font-size: .7rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; display: block; }\n\n\/* Strip *\/\n.strip { background: var(--red); color: white; overflow: hidden; padding: 12px 0; font-size: .82rem; font-weight: 600; letter-spacing: .04em; }\n.strip-inner { display: flex; animation: scroll-strip 30s linear infinite; white-space: nowrap; width: max-content; }\n.strip-inner span { padding: 0 28px; }\n.strip-inner span::after { content: '\u2726'; margin-left: 28px; }\n@keyframes scroll-strip { from{transform:translateX(0)} to{transform:translateX(-50%)} }\n\n\/* ---------- SECTION SHARED ---------- *\/\nsection { padding: 80px 0; }\n.section-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }\n.section-title { font-family: var(--serif); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 900; line-height: 1.15; color: var(--black); margin-bottom: 16px; }\n.section-sub { font-size: 1rem; color: var(--gray); max-width: 520px; line-height: 1.7; }\n.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; }\n.view-all { font-size: .875rem; font-weight: 600; color: var(--red); white-space: nowrap; display: flex; align-items: center; gap: 6px; flex-shrink: 0; }\n.view-all:hover { text-decoration: underline; }\n\n\/* ---------- DESTINATIONS ---------- *\/\n.destinations { background: var(--cream); }\n.destinations-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }\n.dest-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 3\/4; cursor: pointer; }\n.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }\n.dest-card:hover img { transform: scale(1.06); }\n.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.75) 40%,transparent 80%); }\n.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 14px; color: white; }\n.dest-info h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; }\n.dest-info p { font-size: .75rem; color: rgba(255,255,255,.75); }\n.dest-tag { position: absolute; top: 12px; left: 12px; background: var(--red); color: white; font-size: .63rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }\n\n\/* ---------- PACKAGES ---------- *\/\n.packages { background: var(--cream-2); }\n.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }\n.pkg-card { background: white; border-radius: 10px; overflow: hidden; border: 1px solid var(--gray-lt); transition: transform .2s, box-shadow .2s; }\n.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }\n.pkg-card.featured { border: 2px solid var(--red); }\n.pkg-card img { width: 100%; height: 220px; object-fit: cover; }\n.pkg-body { padding: 22px; }\n.pkg-badge { display: inline-block; background: #fef2f4; color: var(--red); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-bottom: 10px; }\n.pkg-body h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }\n.pkg-body p { font-size: .85rem; color: var(--gray); margin-bottom: 14px; line-height: 1.6; }\n.pkg-meta { display: flex; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }\n.pkg-meta span { display: flex; align-items: center; gap: 5px; font-size: .78rem; color: var(--gray); }\n.pkg-meta svg { width: 13px; height: 13px; color: var(--red); }\n.pkg-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--gray-lt); }\n.pkg-price .from { font-size: .68rem; color: var(--gray); }\n.pkg-price .amount { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: var(--black); }\n.pkg-price .per { font-size: .72rem; color: var(--gray); }\n.btn-sm { background: var(--red); color: white; padding: 9px 18px; border-radius: 4px; font-size: .82rem; font-weight: 700; border: none; cursor: pointer; transition: background .2s; display: inline-block; }\n.btn-sm:hover { background: var(--red-dark); }\n\n\/* ---------- WHY US ---------- *\/\n.why-us { background: var(--black); color: var(--white); }\n.why-us .section-title { color: white; }\n.why-us .section-sub { color: rgba(255,255,255,.6); }\n.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-top: 48px; }\n.why-item { text-align: center; }\n.why-icon { width: 60px; height: 60px; background: rgba(200,16,46,.15); border: 1px solid rgba(200,16,46,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }\n.why-icon svg { width: 26px; height: 26px; color: var(--red); }\n.why-item h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 8px; }\n.why-item p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.65; }\n\n\/* ---------- REVIEWS ---------- *\/\n.reviews { background: var(--cream); }\n.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }\n.review-card { background: white; border-radius: 10px; padding: 28px; border: 1px solid var(--gray-lt); }\n.stars { color: #f5a623; font-size: .9rem; margin-bottom: 14px; }\n.review-text { font-size: .875rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }\n.reviewer { display: flex; align-items: center; gap: 12px; }\n.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }\n.reviewer-name { font-weight: 700; font-size: .875rem; }\n.reviewer-location { font-size: .75rem; color: var(--gray); }\n.verified { margin-left: auto; display: flex; align-items: center; gap: 4px; font-size: .72rem; color: #22a360; font-weight: 600; }\n.verified svg { width: 14px; height: 14px; }\n\n\/* ---------- CTA BANNER ---------- *\/\n.cta-banner { background: var(--red); padding: 80px 0; text-align: center; color: white; }\n.cta-banner h2 { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 900; margin-bottom: 16px; }\n.cta-banner p { font-size: 1.05rem; opacity: .85; max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }\n.btn-white { background: white; color: var(--red); padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: .95rem; border: 2px solid white; cursor: pointer; transition: background .2s,color .2s; display: inline-flex; align-items: center; gap: 8px; }\n.btn-white:hover { background: transparent; color: white; }\n\n\/* ---------- FOOTER ---------- *\/\n.footer { background: #0d0d0d; color: rgba(255,255,255,.7); padding: 64px 0 0; }\n.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }\n.footer-brand .logo { margin-bottom: 16px; }\n.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }\n.footer-brand .socials { display: flex; gap: 10px; margin-top: 20px; }\n.socials a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; }\n.socials a:hover { background: var(--red); }\n.socials svg { width: 16px; height: 16px; }\n.footer-col h4 { color: white; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }\n.footer-col a { display: block; font-size: .85rem; color: rgba(255,255,255,.55); padding: 5px 0; transition: color .2s; }\n.footer-col a:hover { color: white; }\n.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; gap: 16px; flex-wrap: wrap; }\n.footer-bottom a { color: rgba(255,255,255,.5); }\n.footer-bottom a:hover { color: white; }\n\n\/* ---------- RESPONSIVE ---------- *\/\n@media (max-width: 1024px) {\n  .destinations-grid { grid-template-columns: repeat(3,1fr); }\n  .why-grid { grid-template-columns: repeat(2,1fr); }\n  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }\n  .dropdown.dropdown-wide { min-width: 480px; }\n}\n@media (max-width: 768px) {\n  .topbar .topbar-right { display: none; }\n  .nav-menu {\n    display: none; position: absolute; top: 68px; left: 0; right: 0;\n    background: white; flex-direction: column; align-items: flex-start; gap: 0;\n    padding: 8px 0; border-top: 1px solid var(--gray-lt);\n    box-shadow: 0 8px 24px rgba(0,0,0,.1);\n  }\n  .nav-menu.open { display: flex; }\n  .nav-link { width: 100%; padding: 12px 24px; border-radius: 0; }\n  .dropdown { position: static !important; box-shadow: none; border: none; min-width: auto; width: 100%; margin-top: 0; display: none !important; }\n  .hamburger { display: flex; }\n  .hero { height: auto; min-height: 80vh; }\n  .hero-content .container { flex-direction: column; align-items: flex-start; }\n  .hero-stats { flex-direction: row; flex-wrap: wrap; }\n  .destinations-grid { grid-template-columns: repeat(2,1fr); }\n  .packages-grid { grid-template-columns: 1fr; }\n  .reviews-grid { grid-template-columns: 1fr; }\n  .why-grid { grid-template-columns: 1fr 1fr; }\n  .section-header { flex-direction: column; align-items: flex-start; }\n  .footer-grid { grid-template-columns: 1fr; gap: 24px; }\n}\n@media (max-width: 480px) {\n  .destinations-grid { grid-template-columns: 1fr 1fr; }\n  .why-grid { grid-template-columns: 1fr; }\n  .hero-ctas { flex-direction: column; }\n}\n<\/style>\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\" \/>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" \/>\n  <title>Trek Himalayan Trails \u2014 Nepal Trekking Experts<\/title>\n  <link rel=\"stylesheet\" href=\"styles.css\" \/>\n<\/head>\n<body>\n\n<!-- ===== TOP BAR ===== -->\n<div class=\"topbar\">\n  <div class=\"container\">\n    <div class=\"topbar-left\">\n      <a href=\"tel:+97714567890\">\n        <svg width=\"12\" height=\"12\" viewBox=\"0 0 24 24\" fill=\"currentColor\" style=\"display:inline;margin-right:4px\"><path d=\"M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z\"\/><\/svg>\n        +977 1 456 7890\n      <\/a>\n      <a href=\"mailto:hello@trekhimalayan.com\">\n        <svg width=\"12\" height=\"12\" viewBox=\"0 0 24 24\" fill=\"currentColor\" style=\"display:inline;margin-right:4px\"><path d=\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z\"\/><\/svg>\n        hello@trekhimalayan.com\n      <\/a>\n    <\/div>\n    <div class=\"topbar-right\">\n      <span>\u2726 Government Registered Trekking Agency<\/span>\n      <span>\u2726 NTB Licensed Guide Team<\/span>\n      <a href=\"#\">\ud83c\udf10 EN<\/a>\n    <\/div>\n  <\/div>\n<\/div>\n\n<!-- ===== NAVBAR ===== -->\n<nav class=\"navbar\">\n  <div class=\"container\">\n    <a href=\"\/\" class=\"logo\">\n      <div class=\"logo-icon\">\n        <svg viewBox=\"0 0 24 24\" fill=\"white\"><path d=\"M12 2L2 19h20L12 2zm0 4l7 13H5l7-13z\"\/><\/svg>\n      <\/div>\n      <div class=\"logo-text\">Trek <span>Himalayan<\/span><br>Trails<\/div>\n    <\/a>\n\n    <ul class=\"nav-menu\" id=\"navMenu\">\n\n      <li class=\"nav-item\">\n        <a href=\"\/\" class=\"nav-link\">Home<\/a>\n      <\/li>\n\n      <li class=\"nav-item has-dropdown\">\n        <a href=\"#packages\" class=\"nav-link\">\n          Tour Packages\n          <svg viewBox=\"0 0 24 24\" fill=\"currentColor\" class=\"chevron\"><path d=\"M7 10l5 5 5-5H7z\"\/><\/svg>\n        <\/a>\n        <div class=\"dropdown dropdown-sm\">\n          <a href=\"#\">Everest Base Camp Trek<\/a>\n          <a href=\"#\">Annapurna Circuit<\/a>\n          <a href=\"#\">Langtang Valley<\/a>\n          <a href=\"#\">Mustang Adventure<\/a>\n          <a href=\"#\">Pokhara Day Trips<\/a>\n          <a href=\"#\">View All Packages \u2192<\/a>\n        <\/div>\n      <\/li>\n\n      <li class=\"nav-item has-dropdown\">\n        <a href=\"#\" class=\"nav-link\">\n          Travel Guide\n          <svg viewBox=\"0 0 24 24\" fill=\"currentColor\" class=\"chevron\"><path d=\"M7 10l5 5 5-5H7z\"\/><\/svg>\n        <\/a>\n        <div class=\"dropdown dropdown-wide\">\n          <div class=\"dropdown-col\">\n            <h4>Practical Information<\/h4>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/plan-your-trip\/weather\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7z\"\/><circle cx=\"12\" cy=\"9\" r=\"2.5\"\/><\/svg>Weather\n            <\/a>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/tourism-information-centre\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><circle cx=\"12\" cy=\"12\" r=\"10\"\/><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"12\"\/><line x1=\"12\" y1=\"16\" x2=\"12.01\" y2=\"16\"\/><\/svg>Tourism Information Centre\n            <\/a>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/emergency\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><polygon points=\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\"\/><\/svg>Emergency Numbers\n            <\/a>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/plan-your-trip\/public-holidays\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><rect x=\"3\" y=\"4\" width=\"18\" height=\"18\" rx=\"2\"\/><line x1=\"16\" y1=\"2\" x2=\"16\" y2=\"6\"\/><line x1=\"8\" y1=\"2\" x2=\"8\" y2=\"6\"\/><line x1=\"3\" y1=\"10\" x2=\"21\" y2=\"10\"\/><\/svg>Public Holidays\n            <\/a>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/currency\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><line x1=\"12\" y1=\"1\" x2=\"12\" y2=\"23\"\/><path d=\"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6\"\/><\/svg>Currency Converter\n            <\/a>\n          <\/div>\n          <div class=\"dropdown-col\">\n            <h4>Travel<\/h4>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/plan-your-trip\/visa\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><rect x=\"2\" y=\"5\" width=\"20\" height=\"14\" rx=\"2\"\/><line x1=\"2\" y1=\"10\" x2=\"22\" y2=\"10\"\/><\/svg>Visa Guide\n            <\/a>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/airport-information\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M17.8 19.2L16 11l3.5-3.5C21 6 21 4 19.5 2.5S18 2 16.5 3.5L13 7 4.8 5.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z\"\/><\/svg>Airport Info\n            <\/a>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/plan-your-trip\/travel-partners\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"\/><circle cx=\"9\" cy=\"7\" r=\"4\"\/><path d=\"M23 21v-2a4 4 0 0 0-3-3.87\"\/><path d=\"M16 3.13a4 4 0 0 1 0 7.75\"\/><\/svg>Travel Partners\n            <\/a>\n          <\/div>\n          <div class=\"dropdown-col\">\n            <h4>Explore Nepal<\/h4>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/trips\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"\/><polyline points=\"9 22 9 12 15 12 15 22\"\/><\/svg>Itineraries &amp; Packages\n            <\/a>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/festivals-and-events\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><circle cx=\"12\" cy=\"12\" r=\"10\"\/><polyline points=\"12 6 12 12 16 14\"\/><\/svg>Festivals &amp; Events\n            <\/a>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/rural-tourism\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z\"\/><\/svg>Rural Tourism\n            <\/a>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/exquisite-crafts\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><polygon points=\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\"\/><\/svg>Exquisite Crafts\n            <\/a>\n            <a href=\"https:\/\/www.incredibleindia.gov.in\/en\/people-and-culture\" target=\"_blank\">\n              <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"\/><circle cx=\"9\" cy=\"7\" r=\"4\"\/><\/svg>People &amp; Culture\n            <\/a>\n          <\/div>\n        <\/div>\n      <\/li>\n\n      <li class=\"nav-item has-dropdown\">\n        <a href=\"#\" class=\"nav-link\">\n          Plan Your Trip\n          <svg viewBox=\"0 0 24 24\" fill=\"currentColor\" class=\"chevron\"><path d=\"M7 10l5 5 5-5H7z\"\/><\/svg>\n        <\/a>\n        <div class=\"dropdown dropdown-sm\">\n          <a href=\"#\">Best Season to Visit<\/a>\n          <a href=\"#\">Packing List<\/a>\n          <a href=\"#\">Altitude Sickness Guide<\/a>\n          <a href=\"#\">Permits &amp; TIMS<\/a>\n          <a href=\"#\">Budget Calculator<\/a>\n        <\/div>\n      <\/li>\n\n      <li class=\"nav-item has-dropdown\">\n        <a href=\"#\" class=\"nav-link\">\n          About Us\n          <svg viewBox=\"0 0 24 24\" fill=\"currentColor\" class=\"chevron\"><path d=\"M7 10l5 5 5-5H7z\"\/><\/svg>\n        <\/a>\n        <div class=\"dropdown dropdown-sm\">\n          <a href=\"#\">Our Story<\/a>\n          <a href=\"#\">Our Team<\/a>\n          <a href=\"#\">Certifications<\/a>\n          <a href=\"#\">Sustainability<\/a>\n        <\/div>\n      <\/li>\n\n      <li class=\"nav-item\">\n        <a href=\"#contact\" class=\"nav-link\">Contact Us<\/a>\n      <\/li>\n\n      <li class=\"nav-item\">\n        <a href=\"#packages\" class=\"nav-link nav-cta\">Book Now<\/a>\n      <\/li>\n    <\/ul>\n\n    <button class=\"hamburger\" id=\"hamburger\" aria-label=\"Open menu\">\n      <span><\/span><span><\/span><span><\/span>\n    <\/button>\n  <\/div>\n<\/nav>\n\n<!-- ===== HERO ===== -->\n<!-- Hero BG: Everest region aerial \u2014 Unsplash photo by Samrat Khadka -->\n<section class=\"hero\">\n  <div class=\"hero-bg\" style=\"background-image:url('https:\/\/images.unsplash.com\/photo-1585016495481-91aeab724dbc?w=1800&#038;q=85&#038;auto=format&#038;fit=crop')\"><\/div>\n  <div class=\"hero-overlay\"><\/div>\n  <div class=\"hero-content\">\n    <div class=\"container\">\n      <div class=\"hero-text\">\n        <div class=\"hero-eyebrow\">\n          <span><\/span>#1 Trekking Agency in Nepal\n        <\/div>\n        <h1 class=\"hero-title\">\n          Discover the Roof<br>of the <em>World<\/em>\n        <\/h1>\n        <p class=\"hero-subtitle\">\n          Expert-guided treks to Everest, Annapurna, Langtang &amp; beyond. Handcrafted itineraries, certified mountain guides, and memories that last a lifetime.\n        <\/p>\n        <div class=\"hero-ctas\">\n          <a href=\"#packages\" class=\"btn-primary\">\n            <svg width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"currentColor\"><path d=\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\"\/><\/svg>\n            Explore Packages\n          <\/a>\n          <a href=\"#contact\" class=\"btn-ghost\">\n            <svg width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M22 16.92v3a2 2 0 0 1-2.18 2A19.79 19.79 0 0 1 11.82 19 19.5 19.5 0 0 1 5.36 12.18 19.79 19.79 0 0 1 3.32 3.7 2 2 0 0 1 5.3 1.5h3a2 2 0 0 1 2 1.72\"\/><\/svg>\n            Free Consultation\n          <\/a>\n        <\/div>\n      <\/div>\n      <div class=\"hero-stats\">\n        <div class=\"stat-box\"><span class=\"num\">5000+<\/span><span class=\"lbl\">Happy Trekkers<\/span><\/div>\n        <div class=\"stat-box\"><span class=\"num\">15+<\/span><span class=\"lbl\">Years Experience<\/span><\/div>\n        <div class=\"stat-box\"><span class=\"num\">98%<\/span><span class=\"lbl\">Summit Rate<\/span><\/div>\n        <div class=\"stat-box\"><span class=\"num\">50+<\/span><span class=\"lbl\">Expert Guides<\/span><\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/section>\n\n<!-- Scrolling strip -->\n<div class=\"strip\">\n  <div class=\"strip-inner\">\n    <span>Everest Base Camp<\/span><span>Annapurna Circuit<\/span><span>Langtang Valley<\/span>\n    <span>Upper Mustang<\/span><span>Manaslu Circuit<\/span><span>Pokhara &amp; Phewa Lake<\/span>\n    <span>Gokyo Lakes<\/span><span>Island Peak Climbing<\/span>\n    <span>Everest Base Camp<\/span><span>Annapurna Circuit<\/span><span>Langtang Valley<\/span>\n    <span>Upper Mustang<\/span><span>Manaslu Circuit<\/span><span>Pokhara &amp; Phewa Lake<\/span>\n    <span>Gokyo Lakes<\/span><span>Island Peak Climbing<\/span>\n  <\/div>\n<\/div>\n\n<!-- ===== DESTINATIONS ===== -->\n<section class=\"destinations\">\n  <div class=\"container\">\n    <div class=\"section-header\">\n      <div class=\"section-header-text\">\n        <p class=\"section-eyebrow\">Top Destinations<\/p>\n        <h2 class=\"section-title\">Nepal&#8217;s Most Iconic<br>Trekking Regions<\/h2>\n      <\/div>\n      <a href=\"#\" class=\"view-all\">View all destinations \u2192<\/a>\n    <\/div>\n    <div class=\"destinations-grid\">\n\n      <!-- Everest Region \u2014 Khumbu Valley, Nepal by Sylwia Bartyzel -->\n      <div class=\"dest-card\">\n        <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1516659290001-a2ecf659a2e6?w=600&#038;q=80&#038;auto=format&#038;fit=crop\" alt=\"Everest Region\" loading=\"lazy\" \/>\n        <div class=\"dest-overlay\"><\/div>\n        <span class=\"dest-tag\">Most Popular<\/span>\n        <div class=\"dest-info\"><h3>Everest Region<\/h3><p>From 12 days<\/p><\/div>\n      <\/div>\n\n      <!-- Annapurna \u2014 snow peaks Nepal by Swarup Sapkota -->\n      <div class=\"dest-card\">\n        <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1585016616571-8c85e1fcf7bd?w=600&#038;q=80&#038;auto=format&#038;fit=crop\" alt=\"Annapurna\" loading=\"lazy\" \/>\n        <div class=\"dest-overlay\"><\/div>\n        <div class=\"dest-info\"><h3>Annapurna<\/h3><p>From 10 days<\/p><\/div>\n      <\/div>\n\n      <!-- Pokhara \u2014 Phewa Lake reflection by Giuseppe Mond\u00ec -->\n      <div class=\"dest-card\">\n        <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1605640840605-14ac1855827b?w=600&#038;q=80&#038;auto=format&#038;fit=crop\" alt=\"Pokhara\" loading=\"lazy\" \/>\n        <div class=\"dest-overlay\"><\/div>\n        <div class=\"dest-info\"><h3>Pokhara<\/h3><p>From 3 days<\/p><\/div>\n      <\/div>\n\n      <!-- Mustang \u2014 arid desert canyon Nepal -->\n      <div class=\"dest-card\">\n        <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1593693397690-362cb9666fc2?w=600&#038;q=80&#038;auto=format&#038;fit=crop\" alt=\"Upper Mustang\" loading=\"lazy\" \/>\n        <div class=\"dest-overlay\"><\/div>\n        <span class=\"dest-tag\">Restricted<\/span>\n        <div class=\"dest-info\"><h3>Upper Mustang<\/h3><p>From 14 days<\/p><\/div>\n      <\/div>\n\n      <!-- Langtang \u2014 green Himalayan valley -->\n      <div class=\"dest-card\">\n        <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1601024745018-e2d2d8d08d1a?w=600&#038;q=80&#038;auto=format&#038;fit=crop\" alt=\"Langtang Valley\" loading=\"lazy\" \/>\n        <div class=\"dest-overlay\"><\/div>\n        <div class=\"dest-info\"><h3>Langtang Valley<\/h3><p>From 8 days<\/p><\/div>\n      <\/div>\n\n    <\/div>\n  <\/div>\n<\/section>\n\n<!-- ===== TOUR PACKAGES ===== -->\n<section class=\"packages\" id=\"packages\">\n  <div class=\"container\">\n    <div class=\"section-header\">\n      <div class=\"section-header-text\">\n        <p class=\"section-eyebrow\">Tour Packages<\/p>\n        <h2 class=\"section-title\">Handcrafted Treks<br>For Every Adventurer<\/h2>\n        <p class=\"section-sub\">From first-time trekkers to seasoned mountaineers \u2014 we have a journey for you.<\/p>\n      <\/div>\n      <a href=\"#\" class=\"view-all\">All packages \u2192<\/a>\n    <\/div>\n    <div class=\"packages-grid\">\n\n      <!-- EBC \u2014 trekkers walking toward Everest base camp -->\n      <div class=\"pkg-card featured\">\n        <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1483728642387-6c3bdd6c93e5?w=700&#038;q=80&#038;auto=format&#038;fit=crop&#038;crop=center\" alt=\"Everest Base Camp Trek\" loading=\"lazy\" \/>\n        <div class=\"pkg-body\">\n          <span class=\"pkg-badge\">\u2b50 Best Seller<\/span>\n          <h3>Everest Base Camp Trek<\/h3>\n          <p>The classic high-altitude journey to 5,364m. Walk in the footsteps of legends through Sherpa villages and glacier moraines.<\/p>\n          <div class=\"pkg-meta\">\n            <span><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><circle cx=\"12\" cy=\"12\" r=\"10\"\/><polyline points=\"12 6 12 12 16 14\"\/><\/svg>14 Days<\/span>\n            <span><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"\/><circle cx=\"9\" cy=\"7\" r=\"4\"\/><\/svg>Max 12 People<\/span>\n            <span><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><polygon points=\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\"\/><\/svg>Moderate<\/span>\n          <\/div>\n          <div class=\"pkg-footer\">\n            <div class=\"pkg-price\"><div class=\"from\">From<\/div><div class=\"amount\">$1,450<\/div><div class=\"per\">per person<\/div><\/div>\n            <a href=\"#\" class=\"btn-sm\">Book Now<\/a>\n          <\/div>\n        <\/div>\n      <\/div>\n\n      <!-- Annapurna Circuit \u2014 Thorong La mountain pass -->\n      <div class=\"pkg-card\">\n        <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1571566882372-1598d88abd90?w=700&#038;q=80&#038;auto=format&#038;fit=crop\" alt=\"Annapurna Circuit\" loading=\"lazy\" \/>\n        <div class=\"pkg-body\">\n          <span class=\"pkg-badge\">\ud83c\udfd4\ufe0f Epic Journey<\/span>\n          <h3>Annapurna Circuit<\/h3>\n          <p>Cross the legendary Thorong La Pass at 5,416m on Nepal&#8217;s most diverse trek \u2014 forests, deserts, and mountain panoramas.<\/p>\n          <div class=\"pkg-meta\">\n            <span><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><circle cx=\"12\" cy=\"12\" r=\"10\"\/><polyline points=\"12 6 12 12 16 14\"\/><\/svg>16 Days<\/span>\n            <span><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"\/><circle cx=\"9\" cy=\"7\" r=\"4\"\/><\/svg>Max 10 People<\/span>\n            <span><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><polygon points=\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\"\/><\/svg>Challenging<\/span>\n          <\/div>\n          <div class=\"pkg-footer\">\n            <div class=\"pkg-price\"><div class=\"from\">From<\/div><div class=\"amount\">$1,280<\/div><div class=\"per\">per person<\/div><\/div>\n            <a href=\"#\" class=\"btn-sm\">Book Now<\/a>\n          <\/div>\n        <\/div>\n      <\/div>\n\n      <!-- Langtang \u2014 rhododendron forest trail Nepal -->\n      <div class=\"pkg-card\">\n        <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1596066190600-3af9aadaaea1?w=700&#038;q=80&#038;auto=format&#038;fit=crop\" alt=\"Langtang Valley Trek\" loading=\"lazy\" \/>\n        <div class=\"pkg-body\">\n          <span class=\"pkg-badge\">\ud83c\udf3f Hidden Gem<\/span>\n          <h3>Langtang Valley Trek<\/h3>\n          <p>Nepal&#8217;s closest major trek to Kathmandu winds through rhododendron forests and glacial valleys to Kyanjin Gompa.<\/p>\n          <div class=\"pkg-meta\">\n            <span><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><circle cx=\"12\" cy=\"12\" r=\"10\"\/><polyline points=\"12 6 12 12 16 14\"\/><\/svg>9 Days<\/span>\n            <span><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"\/><circle cx=\"9\" cy=\"7\" r=\"4\"\/><\/svg>Max 14 People<\/span>\n            <span><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><polygon points=\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\"\/><\/svg>Moderate<\/span>\n          <\/div>\n          <div class=\"pkg-footer\">\n            <div class=\"pkg-price\"><div class=\"from\">From<\/div><div class=\"amount\">$780<\/div><div class=\"per\">per person<\/div><\/div>\n            <a href=\"#\" class=\"btn-sm\">Book Now<\/a>\n          <\/div>\n        <\/div>\n      <\/div>\n\n    <\/div>\n  <\/div>\n<\/section>\n\n<!-- ===== WHY US ===== -->\n<section class=\"why-us\">\n  <div class=\"container\">\n    <div style=\"text-align:center; max-width:560px; margin:0 auto\">\n      <p class=\"section-eyebrow\">Why Choose Us<\/p>\n      <h2 class=\"section-title\">Your Safety &amp; Experience<br>Are Our Only Priority<\/h2>\n      <p class=\"section-sub\">Every detail \u2014 from your first email to your final descent \u2014 is handled by people who love these mountains.<\/p>\n    <\/div>\n    <div class=\"why-grid\">\n      <div class=\"why-item\">\n        <div class=\"why-icon\"><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z\"\/><\/svg><\/div>\n        <h3>Government Licensed<\/h3>\n        <p>Fully registered with Nepal Tourism Board. All guides hold NTB, TIMS &amp; Wilderness First Aid certification.<\/p>\n      <\/div>\n      <div class=\"why-item\">\n        <div class=\"why-icon\"><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"\/><circle cx=\"9\" cy=\"7\" r=\"4\"\/><path d=\"M23 21v-2a4 4 0 0 0-3-3.87\"\/><path d=\"M16 3.13a4 4 0 0 1 0 7.75\"\/><\/svg><\/div>\n        <h3>Small Group Treks<\/h3>\n        <p>Maximum 12 trekkers per group ensures a personal experience and faster acclimatization at altitude.<\/p>\n      <\/div>\n      <div class=\"why-item\">\n        <div class=\"why-icon\"><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><polyline points=\"22 12 18 12 15 21 9 3 6 12 2 12\"\/><\/svg><\/div>\n        <h3>Emergency Support 24\/7<\/h3>\n        <p>Satellite communication, on-call doctors, and helicopter evacuation coordination included on every trek.<\/p>\n      <\/div>\n      <div class=\"why-item\">\n        <div class=\"why-icon\"><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><line x1=\"12\" y1=\"1\" x2=\"12\" y2=\"23\"\/><path d=\"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6\"\/><\/svg><\/div>\n        <h3>No Hidden Costs<\/h3>\n        <p>Transparent pricing with everything itemised: permits, accommodation, meals, guide, and porter fees.<\/p>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/section>\n\n<!-- ===== REVIEWS ===== -->\n<section class=\"reviews\">\n  <div class=\"container\">\n    <div class=\"section-header\">\n      <div class=\"section-header-text\">\n        <p class=\"section-eyebrow\">Trekker Reviews<\/p>\n        <h2 class=\"section-title\">Stories From The Trail<\/h2>\n      <\/div>\n      <a href=\"#\" class=\"view-all\">All reviews \u2192<\/a>\n    <\/div>\n    <div class=\"reviews-grid\">\n      <div class=\"review-card\">\n        <div class=\"stars\">\u2605\u2605\u2605\u2605\u2605<\/div>\n        <p class=\"review-text\">&#8220;Our Everest Base Camp trek was flawlessly organised. Pemba, our guide, knew every trail stone by name. The acclimatisation schedule was perfect \u2014 not a single person fell ill.&#8221;<\/p>\n        <div class=\"reviewer\">\n          <div class=\"reviewer-avatar\" style=\"background:#ddd;\"><\/div>\n          <div><div class=\"reviewer-name\">Sarah Mitchell<\/div><div class=\"reviewer-location\">\ud83c\udde6\ud83c\uddfa Melbourne, Australia<\/div><\/div>\n          <div class=\"verified\"><svg viewBox=\"0 0 24 24\" fill=\"currentColor\"><path d=\"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z\"\/><\/svg>Verified<\/div>\n        <\/div>\n      <\/div>\n      <div class=\"review-card\">\n        <div class=\"stars\">\u2605\u2605\u2605\u2605\u2605<\/div>\n        <p class=\"review-text\">&#8220;The Annapurna Circuit exceeded every expectation. Waking up to that Thorong La sunrise at 5am \u2014 nothing in my life has compared. Trek Himalayan made it accessible even for me.&#8221;<\/p>\n        <div class=\"reviewer\">\n          <div class=\"reviewer-avatar\" style=\"background:#ddd;\"><\/div>\n          <div><div class=\"reviewer-name\">James Kowalski<\/div><div class=\"reviewer-location\">\ud83c\udde8\ud83c\udde6 Vancouver, Canada<\/div><\/div>\n          <div class=\"verified\"><svg viewBox=\"0 0 24 24\" fill=\"currentColor\"><path d=\"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z\"\/><\/svg>Verified<\/div>\n        <\/div>\n      <\/div>\n      <div class=\"review-card\">\n        <div class=\"stars\">\u2605\u2605\u2605\u2605\u2605<\/div>\n        <p class=\"review-text\">&#8220;Langtang Valley in spring \u2014 the rhododendrons, the yaks, the silence. Our guide Dawa arranged a home-cooked dinner in a Tamang village. This is the Nepal most tourists never see.&#8221;<\/p>\n        <div class=\"reviewer\">\n          <div class=\"reviewer-avatar\" style=\"background:#ddd;\"><\/div>\n          <div><div class=\"reviewer-name\">L\u00e9a Dupont<\/div><div class=\"reviewer-location\">\ud83c\uddeb\ud83c\uddf7 Lyon, France<\/div><\/div>\n          <div class=\"verified\"><svg viewBox=\"0 0 24 24\" fill=\"currentColor\"><path d=\"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z\"\/><\/svg>Verified<\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/section>\n\n<!-- ===== CTA BANNER ===== -->\n<section class=\"cta-banner\">\n  <div class=\"container\">\n    <h2>Ready to Trek the Himalayas?<\/h2>\n    <p>Talk to our team today and we&#8217;ll design the perfect itinerary around your pace, budget, and dream summit.<\/p>\n    <a href=\"#contact\" class=\"btn-white\">\n      Plan My Trek\n      <svg width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2.5\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"\/><polyline points=\"12 5 19 12 12 19\"\/><\/svg>\n    <\/a>\n  <\/div>\n<\/section>\n\n<!-- ===== FOOTER ===== -->\n<footer class=\"footer\" id=\"contact\">\n  <div class=\"container\">\n    <div class=\"footer-grid\">\n      <div class=\"footer-brand\">\n        <a href=\"\/\" class=\"logo\">\n          <div class=\"logo-icon\"><svg viewBox=\"0 0 24 24\" fill=\"white\"><path d=\"M12 2L2 19h20L12 2zm0 4l7 13H5l7-13z\"\/><\/svg><\/div>\n          <div class=\"logo-text\" style=\"color:white\">Trek <span>Himalayan<\/span><br>Trails<\/div>\n        <\/a>\n        <p>Nepal&#8217;s most trusted trekking agency since 2009. Government licensed, guide-led, and deeply committed to responsible mountain tourism.<\/p>\n        <div class=\"socials\">\n          <a href=\"#\" aria-label=\"Facebook\"><svg viewBox=\"0 0 24 24\" fill=\"white\"><path d=\"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z\"\/><\/svg><\/a>\n          <a href=\"#\" aria-label=\"Instagram\"><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"white\" stroke-width=\"2\"><rect x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" ry=\"5\"\/><path d=\"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z\"\/><line x1=\"17.5\" y1=\"6.5\" x2=\"17.51\" y2=\"6.5\"\/><\/svg><\/a>\n          <a href=\"#\" aria-label=\"YouTube\"><svg viewBox=\"0 0 24 24\" fill=\"white\"><path d=\"M22.54 6.42a2.78 2.78 0 0 0-1.95-1.96C18.88 4 12 4 12 4s-6.88 0-8.59.46a2.78 2.78 0 0 0-1.95 1.96A29 29 0 0 0 1 12a29 29 0 0 0 .46 5.58A2.78 2.78 0 0 0 3.41 19.6C5.12 20 12 20 12 20s6.88 0 8.59-.46a2.78 2.78 0 0 0 1.95-1.95A29 29 0 0 0 23 12a29 29 0 0 0-.46-5.58z\"\/><polygon points=\"9.75 15.02 15.5 12 9.75 8.98 9.75 15.02\" fill=\"#0d0d0d\"\/><\/svg><\/a>\n        <\/div>\n      <\/div>\n      <div class=\"footer-col\">\n        <h4>Quick Links<\/h4>\n        <a href=\"#\">Home<\/a><a href=\"#\">Tour Packages<\/a><a href=\"#\">Travel Guide<\/a>\n        <a href=\"#\">Plan Your Trip<\/a><a href=\"#\">About Us<\/a><a href=\"#\">Contact Us<\/a>\n      <\/div>\n      <div class=\"footer-col\">\n        <h4>Popular Treks<\/h4>\n        <a href=\"#\">Everest Base Camp<\/a><a href=\"#\">Annapurna Circuit<\/a>\n        <a href=\"#\">Langtang Valley<\/a><a href=\"#\">Upper Mustang<\/a>\n        <a href=\"#\">Manaslu Circuit<\/a><a href=\"#\">Gokyo Lakes<\/a>\n      <\/div>\n      <div class=\"footer-col\">\n        <h4>Contact<\/h4>\n        <a href=\"tel:+97714567890\">+977 1 456 7890<\/a>\n        <a href=\"mailto:hello@trekhimalayan.com\">hello@trekhimalayan.com<\/a>\n        <a href=\"#\">Thamel, Kathmandu, Nepal<\/a>\n        <a href=\"#\">WhatsApp Us<\/a>\n      <\/div>\n    <\/div>\n    <div class=\"footer-bottom\">\n      <span>\u00a9 2026 Trek Himalayan Trails. All rights reserved.<\/span>\n      <div style=\"display:flex; gap:20px;\">\n        <a href=\"#\">Privacy Policy<\/a>\n        <a href=\"#\">Terms of Service<\/a>\n        <a href=\"#\">Responsible Tourism<\/a>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/footer>\n\n<!-- ===== JS ===== -->\n<script>\n  \/\/ ---------- Hamburger ----------\n  const hamburger = document.getElementById('hamburger');\n  const navMenu   = document.getElementById('navMenu');\n  hamburger.addEventListener('click', () => navMenu.classList.toggle('open'));\n\n  \/\/ ---------- Dropdown fix: JS-driven hover with delay ----------\n  \/\/ Pure CSS :hover fails because the gap between the trigger and the panel\n  \/\/ causes a mouseout event before the user can move into the dropdown.\n  \/\/ Solution: add a small close-delay so the dropdown stays open while the\n  \/\/ mouse travels from the nav-link into the panel.\n  let closeTimer = null;\n\n  document.querySelectorAll('.nav-item.has-dropdown').forEach(item => {\n    const open  = () => { clearTimeout(closeTimer); item.classList.add('open'); };\n    const close = () => { closeTimer = setTimeout(() => item.classList.remove('open'), 120); };\n\n    item.addEventListener('mouseenter', open);\n    item.addEventListener('mouseleave', close);\n\n    \/\/ Keep open when mouse enters the dropdown panel itself\n    const panel = item.querySelector('.dropdown');\n    if (panel) {\n      panel.addEventListener('mouseenter', open);\n      panel.addEventListener('mouseleave', close);\n    }\n  });\n<\/script>\n\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Trek Himalayan Trails \u2014 Nepal Trekking Experts +977 1 456 7890 hello@trekhimalayan.com \u2726 Government Registered Trekking Agency \u2726 NTB Licensed [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"plain-container","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"enabled","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-6","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_hostinger_reach_plugin_has_subscription_block":false,"_hostinger_reach_plugin_is_elementor":false,"_links":{"self":[{"href":"https:\/\/trekhimalayantrails.com\/wp-json\/wp\/v2\/pages\/6","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/trekhimalayantrails.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/trekhimalayantrails.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/trekhimalayantrails.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/trekhimalayantrails.com\/wp-json\/wp\/v2\/comments?post=6"}],"version-history":[{"count":17,"href":"https:\/\/trekhimalayantrails.com\/wp-json\/wp\/v2\/pages\/6\/revisions"}],"predecessor-version":[{"id":153,"href":"https:\/\/trekhimalayantrails.com\/wp-json\/wp\/v2\/pages\/6\/revisions\/153"}],"wp:attachment":[{"href":"https:\/\/trekhimalayantrails.com\/wp-json\/wp\/v2\/media?parent=6"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}