:root {
    --primary: #FFFF00; 
    --theme-color: #008000;
    --secondary: #EDEDE9; 
    --accent: #DC143C; 
    --text: #2D2D2D; 
    --white: #FFFFFF; 
    --black: #1C2526; 
    --background: #F9F7F3;
    --shadow: 0 4px 12px rgba(28, 37, 38, 0.15); 
    --transition: all 0.3s ease;
    --section-padding: 50px;
    --spacing-xs: 5px;
    --spacing-sm: 8px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --font-size-sm: 15px;
    --font-size-md: 17px;
    --font-size-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

.top-travel-packages, .why-choose-section {
    background: var(--background);
}

.section {
    padding: var(--section-padding) 0;
}

a, button {
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}
a{
    color: var(--theme-color);
}

/* Utility Classes */
.visible-xs { display: none !important; }
.hidden-xs { display: block !important; }
.text-uppercase { text-transform: uppercase; }

.title {
    font-size: 2.25rem;
    line-height: 1.3;
    color: #1ed31ed9;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.sub_title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--theme-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 12px 16px;
    transition: var(--transition);
}

.btn-solid {
    background: linear-gradient(135deg, #198754 0%, #000 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-solid:hover, .btn-solid:focus {
    background: var(--theme-color);
    transform: translateY(-2px) scale(1.05);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
}

.btn-outline:hover, .btn-outline:focus {
    background: var(--theme-color);
    color: var(--white);
    transform: scale(1.05);
}

@keyframes btnBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1.05); }
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header_site_logo {
    flex: 0 0 200px;
    padding: 5px 0;
}

.header_site_logo img {
    display: block;
    width: 180px;
    height: auto;
}

.header-group {
    border-left: 1px solid #E0E0E0;
    height: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top_header_contact {
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    min-height: 40px;
}

.left_side_contact_info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.left_side_contact_info dl {
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.left_side_contact_info dt {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.left_side_contact_info dt a {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 500;
}

.left_side_contact_info dt a i {
    font-size: 16px;
    color: var(--theme-color);
}

.left_side_contact_info dd {
    margin: 0;
    color: var(--text);
    font-size: 0.85rem;
}

.left_side_contact_info dd a {
    color: var(--text);
    text-decoration: none;
}

.left_side_contact_info dd a:hover,
.left_side_contact_info dt a:hover {
    color: var(--accent);
}

.right_side_social_icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.right_side_social_icon ul li a {
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.right_side_social_icon ul li a.facebook { background: #1877F2; }
.right_side_social_icon ul li a.youtube { background: #FF0000; }
.right_side_social_icon ul li a.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.right_side_social_icon ul li a.tiktok { background: #000000; }

.right_side_social_icon ul li a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.nav_header {
    padding: 10px 15px;
    background: transparent;
}


.header-social-icons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}


.navbar-nav {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    align-items: center;
}

.nav-item .nav-link {
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
    color: var(--accent);
}



.nav-link:hover, .nav-link:focus {
    color: var(--theme-color) !important;
}

.nav-item.dropdown .nav-link::after {
    margin-left: 8px;
    font-size: 13px;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    background: var(--white);
    padding: 15px 0;
    display: none;
    z-index: 999;
}

.nav-item.dropdown:hover .mega-menu {
    display: block;
}

.mega-menu .container {
    margin: 0 auto;
    padding: 0 15px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mega-menu-column {
    padding: 12px;
    width: 260px;
}

.mega-menu-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--accent);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column li {
    margin-bottom: 12px;
    text-align: left;
}

.mega-menu-column li a {
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
    display: block;
}

.mega-menu-column li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

/* Single Dropdown Styles */
.dropdown-menu {
    border: none;
    background: var(--white);
    padding: 15px 0;
    min-width: 260px;
    margin-top: 0px;
    display: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 12px 18px;
    font-size: 15px;
    transition: var(--transition);
    color: var(--text);
}

.dropdown-item:hover {
    color: var(--theme-color);
    background: var(--secondary);
}


/* Hero Section */
.common_hero {
  position: relative;
  height: 72vh;
  min-height: 400px;
  overflow: hidden;
}

.common_hero::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 134px;
  background-image: url(../default/s4.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
  width: 100%;
}

.common_hero .owl-carousel {
  height: 100%;
}

.common_hero .item {
  position: relative;
  height: 72vh;
  min-height: 400px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.common_hero .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}


.inner_hero_content {
    position: absolute;
    left: 40px;
    z-index: 10;
    color: var(--white);
    text-align: left;
    padding: 10px;
}

.inner_hero_title {
    font-weight: 700;
    line-height: 1.3;
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: var(--theme-color);
}



/* Breadcrumb Section */
.hero-breadcrumb {
    padding: 20px 0px 0px 0px;
    background: var(--white);
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;

    text-transform: capitalize;
    color: var(--text);
    font-size: 18px;
    background: none;

}

.page-header .breadcrumb a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.page-header .breadcrumb a:hover {
    color: var(--theme-color);
}

.page-header .breadcrumb span {
    position: relative;
    padding: 0 10px;
    color: var(--text);
}




.breadcrumb-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}





/*banner section css*/

.hero::before {
    content: '';
    position: absolute;
    bottom: -220px;
    left: 0;
    right: 0;
    height: 134px;
    background-image: url(../default/s4.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
    width: 100%;
}



.custom-owl-carousel {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0;
    position: relative;
}

.custom-owl-carousel .item {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.custom-owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
}

.btn-container .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #E0E0E0;
}





.hero-image-section {
    position: relative;
    padding: 20px;
    height: 600px;
}

.hero-img-box {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-img-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 5;
    transition: background 0.3s ease;
}

.hero-img-box:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.hero-img-box.img1 {
    top: 20px;
    left: 20px;
    width: 42%;
    height: 90%;
    z-index: 1;
    border-radius: 50px 10px 10px 50px;
}

.hero-img-box.img2 {
    top: 20px;
    right: 20px;
    width: 50%;
    height: 44%;
    z-index: 2;
    border-radius: 10px 100px 100px 100px;
}

.hero-img-box.img3 {
    bottom: 40px;
    right: 20px;
    width: 50%;
    height: 44%;
    z-index: 3;
    border-radius: 100px 100px 10px 100px;
}

.hero-img-box img {
    height: 100%;
    width: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
    position: relative;
    z-index: 6;
}

.hero-img-box img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-text-section {
 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-text-section h1 {
    font-weight: 800;
    color: #1ed31ed9;
    margin-bottom: 20px;
    line-height: 1.2;
    font-size: 40px;
}

.hero-text-section .about {
    margin-bottom: 30px;
}

.hero-text-section .about h3 {
    color: var(--theme-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-text-section .about p {
    color: var(--text);
    line-height: 1.8;
}



.para-section {
    position: relative;
    min-height: 100vh; 
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden; 
}

/* Video styling for responsiveness */
.bg-video {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0;
}

.para-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.para-inner-section {
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg) 0;
}

.map-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.nepal-facts {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.nepal-facts h6 {
    color: var(--white);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.nepal-facts ul li {
    color: var(--white);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
}

.nepal-facts ul li i {
    margin-right: var(--spacing-sm);
    color: var(--theme-color);
}


@media (max-width: 576px) {
    .package-card .d-flex {
        flex-direction: column;
        gap: 10px;
    }

     .bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }
}

@media (min-width: 992px) {
    .slide-content h1 {
        font-size: 35px;
    }

    .hero-text-section h1 {
        font-size: 40px;
    }
}




/* Footer */
.footer {
    background: linear-gradient(180deg, var(--black) 0%, var(--theme-color) 100%);
    color: var(--white);
    position: relative;
    padding: 100px 0 0px;
    overflow: hidden;
}

.section-shape {
    position: absolute;
    left: 0;
    width: 100%;
    height: 96px;
    background-size: contain;
    background-repeat: repeat-x;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    max-width: 240px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.03);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.9;
}

.footer-contact-info {
    margin-bottom: 30px;
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
}

.footer-contact-info i {
    color: var(--accent);
    margin-right: 14px;
    margin-top: 6px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer-contact-info p:hover i {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.footer-links h5 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.footer-links a i {
    margin-right: 12px;
    color: var(--accent);
    font-size: 13px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.footer-bottom a {
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}



/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--theme-color) 0%, #1f5b8c 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #d96b2c 100%);
    transform: translateY(-5px);
}



/* ------------------ Mobile Menu ------------------ */
.mobile-menu {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--accent) 0%, #d96b2c 100%);
    backdrop-filter: blur(10px); 
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2); 
    justify-content: space-around; 
    align-items: center;
    padding: 4px 0px;
}

.mobile-menu a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 23%;
    padding: 3px 0 !important;
    border-radius: 15px;
    position: relative;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu a i {
    font-size: 28px;
    margin-bottom: 8px;
    color: #f5f5f5;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.mobile-menu a span {
    font-size: 11px; 
    font-weight: 500;
    color: #f5f5f5;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3); 
    transition: color 0.3s ease;
}

.mobile-menu {
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}




.sidebar-guide {
    margin-top: 1.5rem;
}

.sidebar-guide h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.guide-card {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.guide-img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid #ff5733;
    transition: transform 0.3s ease;
}

.guide-img:hover {
    transform: scale(1.05);
}

.guide-info {
    flex: 1;
}

.guide-info h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.guide-info p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-info p i {
    color: #ff5733;
    font-size: 1rem;
}

.guide-btn {
    background-color: #008000; 
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
}

.guide-btn:hover {
    background-color: #006600;
}





/* Gallery CSS */
.gallery-info {
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 8px; /* Matches .gallery-item border-radius */
}
.gallery-item:hover {
  transform: scale(1.05);
}

.comments-form{
  padding: 10px;
  background: #f2f2f2;
}


