:root {
  --default-font: "Verdana", Arial, Helvetica, sans-serif;
  --heading-font: "Verdana", Arial, Helvetica, sans-serif;
  --nav-font: "Verdana", Arial, Helvetica, sans-serif;
}

/* Global Colors */
:root {
	--theme-color: #70AB37;
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;  
  --theme-color-rgb: 114, 147, 67;
  --secondary-color: #FF8204;
  --secondary-color-rgb: 255, 130, 4;
  --heading-color: #32353a;
  --heading-color-rgb: 50, 53, 58;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --nav-color: #fff;
  --nav-hover-color: #ffffff;
  --nav-dropdown-color: #333333;
  --nav-dropdown-hover-color: #333333;
  --nav-dropdown-background-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-size:15px;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--theme-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--theme-color-rgb), 0.7);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.flex-padding{padding:0 60px;}
.flex-pd-100 {padding:0 100px;}

@media (max-width: 768px) {
    .flex-padding{
        padding:0 20px
    }
    .flex-pd-100 {padding:0 20px;}
}

.no-image{
    background:#F4F4F4 url('/assets/images/no-image.png') center center no-repeat; 
    width: 100%;
    height: 100%;
    display: block;
}
.default-img{
    background:#F4F4F4 url('/assets/images/default-img.png') center center; 
    width: auto;
    height: 100%;
    display: block;
}

.btn-color{
    background: var(--secondary-color);
}

.activity-btn,
.activity-btn:focus {
  background: var(--theme-color);
  color: var(--contrast-color);
  border: 0;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 20px;
  outline: none;
}

.activity-btn:hover,
.activity-btn:focus:hover {
  background: rgba(var(--theme-color-rgb), 0.85);
  color: var(--contrast-color);
}

/* .btn-green styles */
.btn-green,
.btn-green:focus {
  background: var(--theme-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  outline: none;
}

.btn-green:hover,
.btn-green:focus:hover {
  background: rgba(var(--theme-color-rgb), 0.85);
  color: var(--contrast-color);
}

    
.btn-all,
.btn-all:focus {
  color: var(--contrast-color);
  background: var(--secondary-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-all:hover,
.btn-all:focus:hover {
  color: var(--contrast-color);
  background: rgba(var(--secondary-color-rgb), 0.85);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.top-section{
    border-top: 5px solid #538126;
}
.header {
  background-color: #70AB37;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 3px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom:1px solid #70AB37;
}

.logo img {
  max-height: 55px;
  margin-right: 0;
  margin-top:0;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}



@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
  --background-color: #70AB37;
  --heading-color: #444444;
  --nav-color: #333;
  --nav-hover-color: #333333;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
  border:1px solid #f1f1f1;
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 90px;
}
.section-margin{
    margin-bottom:40px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.515);
  --nav-hover-color: #ffffff;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #333333;
}

.lead{
    padding-top:80px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    display:block;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-hover-color);
    padding: 15px 10px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: block;  
  white-space: normal;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 5px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 230px;
  }

  .navmenu .dropdown ul a {
    padding: 6px 15px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a span {
  font-size: 12px;
  text-transform: none;
  color: #888;
    }
    
    .navmenu .dropdown ul a:hover span {
      color: #fff !important;
      transition: 0.3s;
    }
    
      .navmenu .dropdown ul a i {
        font-size: 12px;
      }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #fff;
    background: var(--theme-color);
    transition: 0.3s;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #333;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    border:1px solid #666;
    padding:0 6px;
    border-radius:5px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--theme-color-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--theme-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--theme-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul,
  .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul,
  .navmenu .megamenu ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active,
  .navmenu .megamenu>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.menu-btn {
      font-size: 24px;
      background-color: #507F23;
      color: #fff;
      border: none;
      padding: 6px 12px;
      cursor: pointer;
      z-index: 999;
      border-radius: 6px;
    }

    .menu-btn.hidden {
      display: none;
    }

    .sidebar {
      position: fixed;
      top: 0;
      left: -360px;
      width: 350px;
      height: 100%;
      background-color: #fff;
      color: #172642;
      overflow-y: auto;
      transition: left 0.3s ease;
      z-index: 1000;
      box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }
    
    .sidebar a{
        color:#333;
    }

    .sidebar.active {
      left: 0;
    }

    .sidebar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px;
      background-color:#70AB37;
      font-size: 1.25rem;
      font-weight: bold;
      border-bottom: 1px solid #eee;
    }

    .close-btn {
      background: none;
      border: none;
      color: #333;
      font-size: 30px;
      font-weight:700;
      cursor: pointer;
    }

    .sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sidebar li {
      width: 100%;
      padding: 14px 20px;
      cursor: pointer;
      background-color: #fff;
      transition: background 0.3s ease;
      border-bottom: 1px solid #eee;
    }

    .sidebar li:hover {
      background-color: #f2f2f2;
    }

    .sidebar li i {
      margin-right: 10px;
    }

    /* Custom Dropdown (Safe from Bootstrap conflict) */
    .dd-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .dd-toggle .arrow {
      margin-left: 8px;
      transition: transform 0.3s ease;
    }

    .dd-group.dd-open > .dd-toggle .arrow {
      transform: rotate(90deg);
    }

    .dd-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding-left: 15px;
    }

    .dd-group.dd-open > .dd-menu {
      max-height: 500px;
      margin-top: 10px;
    }

    .dd-menu li {
      padding: 12px 20px;
      background-color: #f9f9f9;
      border-bottom: 1px solid #e0e0e0;
      color:#666;
    }

    .dd-menu li:hover {
      background-color: #efefef;
    }
    .dd-menu li a{
        color:#666;
        text-decoration:none;
    }
    .dd-menu li a:hover{
         color:#333;
        text-decoration:none;
    }

    .sidebar li.dd-group.dd-open {
      background-color: #e9ecef;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 998;
    }

    .overlay.active {
      display: block;
    }
/*--------------------------------------------------------------
# Footer Bottom
--------------------------------------------------------------*/
.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}


.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    border-top:8px solid var(--theme-color);
    background-color: #e5e5e5;
    color: #333;
    font-size: 14px;
    padding-bottom: 60px;
}
.footer-logo-section {
    background: #70AB37;
    padding: 40px 0px;
    text-align: center;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    max-height:400px;
}

.footer .since-date {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}

.footer hr {
    border-top: none;
    border-bottom: 1px solid #666;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
}

.footer h5 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
    padding-left:20px;
  margin-bottom: 30px;
  min-height:230px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 5px 0;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #444;
  display: inline-block;
  line-height: 16px;
}

.footer .footer-links ul a:hover {
  color: var(--theme-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-size: 13px;
}

.footer-call {
    font-size: 14px;
    color: #333;
    background: #D2D0D0;
    padding: 20px 10px;
    text-align: center;
    margin: 10px 0px 40px 0px;
}

.footer-call strong {
    font-size: 18px;
    font-weight: bold;
}

.tourism-logo{
    border:1px solid #D2D0D0;
    padding:10px;
    border-radius:10px;
}

.footer .copyright {
  margin-top: 40px;
  margin-bottom: 25px;
  font-size:11px;
  color:#333;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer-bottom {
    background: #F7F7F7 url('https://www.tajmahaltourguidefamilygroup.com/image/catalog/resource/map.png')center no-repeat;
    padding: 100px 0px;
    text-align: center;
    margin: 60px 0px 0px 0px;
}

.bottom-social-icon img {
    margin: 0px 20px;
}

.footer-bottom .bottom-para {
    font-size: 16px;
    margin: 40px 0;
}

.footer-bottom .bottom-heading h2 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 30px 0;
    letter-spacing: 0.9px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--theme-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(var(--theme-color-rgb), 0.8);
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--theme-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  overflow: clip;
}



/*--------------------------------------------------------------
# Section, pages Title
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 10px;
}
.section-title h1, .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  border-bottom:1px solid #f1f1f1;
  padding-bottom:10px;
}
.section-title p {
  margin-bottom: 0;
}
.tour-title h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.25rem;
  font-weight: 800;
  color: #172642;
  position: relative;
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .tour-title h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
  }
}


.subheadingWrap{
    font-size:14px;
    margin-top:10px;
    margin-bottom:15px;
}

.activitytitleWrapper h1 {
  font-size: 36px;
  font-weight: 800;
  position: relative;
  margin:0;
  padding:0;
}

@media (max-width: 768px) {
    .margin-mb{
        margin-top:20px;
    }
    .activitytitleWrapper .tour-title h1 {
      font-size: 26px;
      font-weight: 800;
    }
}
.activity-item{
    border-bottom:1px solid #e1e1e1;
    line-height: 1.375rem;
    padding:30px 0;
}

.activity-item-title{
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.7rem;
    color:#000;
    padding-left:8px;
    margin-bottom:20px;
}

.activity-item p, .activity-overview-item p, .activity-itinerary-item p{
    line-height: 1.495rem;
    margin-left:10px;
}

.activity-overview-item, .activity-highlights-item, .activity-itinerary-item, 
.activity-inclusion-item, .activity-exclusion-item, .activity-additional-item {
    font-size: 1rem;
    line-height: 1.6;  
    color: #333;
}

@media (max-width: 768px) {
    .activity-overview-item, .activity-highlights-item, .activity-itinerary-item, 
    .activity-inclusion-item, .activity-exclusion-item, .activity-additional-item {
        font-size: 0.9rem; 
    }
}
.activity-item .ulMargin{
    margin-left:8px;
    padding-left: 8px;
    list-style-type: disc;
}
.activity-inclusion-item ul, .activity-exclusion-item ul {
  list-style: none; 
  padding-left: 0;
}

.activity-inclusion-item ul li, .activity-exclusion-item ul li {
  position: relative;
  padding-left: 25px; 
  margin-left:20px;
  margin-bottom: 5px;
}

.activity-inclusion-item ul li::before {
  content: "✔"; 
  position: absolute;
  left: 0;
  top: 0;
  color: green; 
  font-size: 16px;
  line-height: 1.375rem;
}
.activity-exclusion-item ul li::before {
  content: "✖"; 
  position: absolute;
  left: 0;
  top: 0;
  color: red; 
  font-size: 16px;
  line-height: 1.375rem;
}

.activity-overview-item p{
    font-weight:500;
}
.activity-itinerary-item h4{
    font-size: 0.9rem;
    font-weight: 700;
}

.activityBadge-column{
    border:1px solid #C7C8C9;
    border-radius:10px;
}
.activityBadge-column .price-column{
    border-bottom:1px solid #C7C8C9;
    padding:20px;
    line-height:auto;
}
.activityBadge-column .priceCard ul {
  list-style: none;
  padding: 20px; 
  position: relative;
}

.activityBadge-column .priceCard ul li {
  position: relative;
  padding-left: 20px; 
  font-size:13px;
}

.activityBadge-column .priceCard ul li::before {
  content: "✔"; 
  position: absolute;
  left: 0;
  top: 0;
  color: #333; 
  font-size: 14px;
  line-height: 1.375rem;
}

.activityBadge-column .tour-price, .activityBadge-column .tour-duration {
  font-size: 20px;
  font-weight: 700;
  margin-right: 4px;
}

.activityForm-title{
  font-size:20px;
  font-weight:700;
  margin:0;
  padding:0;  
}

.activityForm .sticky-activity {
  position: sticky;
  top: 100px; 
  z-index: 10;
}
.activityForm .input-group {
    border:1px solid #D7D8D9;
    border-radius:6px;
}
.activityForm .textarea{
    border:1px solid #D7D8D9;
    border-radius:6px;
}
.activityForm .input-plain{
    background:none;
    border-left:0;
}
.activityForm .activity-field{
    font-size:14px;
    border-right:0;
}

.activityForm .activityForm-select {
  color: rgba(var(--default-color-rgb), 1); /* default color */
}

.activityForm .activityForm-select option[disabled][hidden] {
  color: rgba(var(--default-color-rgb), 0.8); /* like placeholder */
}
.activityForm input[type=text]::-moz-placeholder,
.activityForm input[type=email]::-moz-placeholder,
.activityForm textarea::-moz-placeholder {
  color: rgba(var(--default-color-rgb), 0.8);
}

.activityForm input[type=text]::placeholder,
.activityForm input[type=email]::placeholder,
.activityForm textarea::placeholder {
  color: rgba(var(--default-color-rgb), 0.8);
}

.activityForm button[type=submit] {
  background: var(--theme-color);
  color: var(--contrast-color);
  border: 0;
  font-size:18px;
  font-weight:bold;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 20px;
}

.thumb {
    cursor: pointer;
    border: 0;
    }
.glightbox-container .gslide-media img {
    max-width: 90vw;     
    max-height: 80vh;    
    object-fit: contain; 
    border-radius: 10px; 
    }
.glightbox-container .gslide-media {
    padding: 10px;
    }


@media (max-width: 768px) {
    .tour-title h1{
        font-size: 30px;
    }
    .activity-details-title h1 {
    font-size: 30px;
    }
    .activity-item-title{
    font-size: 1.10rem;
    font-weight: 700;
    }
}
/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title nav {
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

.breadcrumb-nav {
  padding: 10px 0;
  font-size: 16px;
}

.breadcrumb {
  background-color: inherit;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size:13px;
  color:#333;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumb-item a {
   color:#333;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  font-weight: bold;
   color:#333;
}
@media (max-width: 768px) {
  .breadcrumb li:not(:last-child):not(:first-child) {
    display: none; 
  }

  .breadcrumb li:first-child::after {
    content: "... >";
  }
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero-banner {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 160px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.hero-banner:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.1);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-banner .container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.hero-banner h2 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
    .hero-banner h2 {
        font-size: 36px;
        font-weight: 800;
        letter-spacing: -1px;
    }
    .hero-banner p {
        font-size: 16px;
        font-weight: 700;
    }
}

.hero-banner p {
  color: rgba(var(--default-color-rgb));
  margin: 5px 0 0 0;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}


.hero-pagebanner {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  width: 100%;
  min-height: 400px;
  position: relative;
  padding: 0;
  display: flex;
  align-items: flex-end;     
  justify-content: center;
}
.hero-pagebanner:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.1);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-pagebanner img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.hero-pagebanner .container-fluid {
  position: relative;
  z-index: 3;
  padding: 60px;
}

.hero-pagebanner .banner-heading {
  color: var(--contrast-color);
  margin: 0;
  font-size: 50px;
  font-weight: 800;
  letter-spacing:-1px;
 display: block;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7); 
}
.static-heading h1{
  color: var(--contrast-color);
  margin: 0;
  font-size: 60px;
  font-weight: 800;
  letter-spacing:-1px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7); 
  display: flex;
    align-items: center;
    justify-content: center;
}
.static-heading .subtitle{
    font-size: 30px;
    font-weight: 800;
    letter-spacing:-1px;
    color: var(--contrast-color);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7); 
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image{
    position: relative;
    overflow: hidden;
    height: 220px;
    display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.header-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .static-heading h1{
      font-size: 40px;
      text-align:center;
  }
  .static-heading .subtitle{
    font-size: 20px;
     text-align:center;
  }
  .hero-pagebanner {
    min-height: 300px; 
  }

  .hero-pagebanner .container-fluid {
    padding: 20px; 
  }

  .hero-pagebanner .banner-heading {
    font-size: 28px; 
    line-height: 1.2;
    text-align:center;
  }
}



.btn-transparent,
.btn-transparent:focus {
  color: #fff;
  background: transparent;
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  border:2px solid #fff;
  transition: 0.3s;
}

.btn-transparent:hover,
.btn-transparent:focus:hover {
  color: var(--contrast-color);
  background: rgba(var(--theme-color-rgb), 0.85);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}


/* CONTENT LAYOUT
------------------------------*/
.contentlayout{
    font-size:14px;
    line-height:22px;
    
}
.contentlayout ul{
    margin-left: 25px;
    
}
.contentlayout p{
    font-size:14px;
    margin-bottom:10px;
    line-height:22px;
}
.contentlayout h3{
    font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  margin-top:30px;
  margin-bottom: 5px;
}

.contentlayout h4{
    font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  margin-top:30px;
  margin-bottom: 10px;
}
.contentlayout table{
    border:1px solid #ccc;
    margin:10px 0 20px 0;
}
.contentlayout table th {background:#f1f1f1;}
@media (max-width: 768px) {
  .contentlayout h3{
    font-size: 22px;
  }

  .contentlayout h4 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# TOUR CARD
--------------------------------------------------------------*/
.category-header {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  padding: 0 0 10px 0;
  margin-top: 0;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  border-bottom: 1px solid #F0F0EF;
  text-align:center;
}

.category-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url('/assets/images/bg-map-min.png') bottom center repeat-x; */
  opacity: 0.1; 
  z-index: 0;
}
.categ-title{
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight:800;
}
@media (max-width: 768px) {
  .tour-header{
    padding:8px;
  }
  .categ-title{
    font-size: 1.5rem;
    font-weight:800;
}
 
}
.bestseller-badge {
    position: absolute;
    top: 10px;
    left: 0;
    background-color: #F72B2B;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 3px;
    z-index: 10;
    text-transform: uppercase;
}

.card-item {
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
  border:1px solid #DCDFE4; 
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-item a,
.card-item a:visited,
.card-item a:hover {
    color: #000;
    text-decoration: none; /* Optional: removes underline */
}
.card-item .card-image{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 220px;
    background: #f1f1f1;
}
.card-item .card-image img {
  width: 100%;
  height: 100%;
  /*display: block;*/
  /* object-fit: cover; */
  background: #f1f1f1;
  position: absolute;
}
.card-item .card-body {
  padding: 10px;
  flex-grow: 1;
}

.card-body .card-title {
    font-family: var(--default-font);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px 0;
  padding:0;
  color: #1A2B49;
  letter-spacing:-0.5px;
}
.card-body .card-activity-type{
    font-size:13px;
    margin:0 0 5px 0;
    padding:0;
    color:#63687A;
    font-weight:500;
    text-transform: uppercase;
}
.card-body .card-activity-duration{
    font-size:12px;
    color:#666;
}
.card-body .card-activity-price{
    font-size:15px;
    font-weight:bold;
     margin-top: auto;
     bottom:0;
}
.card-body .card-activity-price .tourprice{font-size:18px;color:#FF8A00;}
.card-body .card-activity-price small{
    font-weight:300;
}

.card-item .btn-primary {
  background-color: #007bff;
  border: none;
  transition: background-color 0.2s;
}

.tour-card .btn-primary:hover {
  background-color: #0056b3;
}

.tour-buttons {
  display: flex;
  margin-top: auto;
}

.tour-buttons .btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 8px 10px;
  margin:0 5px;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s;
  font-weight: bold;
}

.book-btn {
  background-color: #FF9600;
  color: #fff;
}

.book-btn:hover {
  background-color: #FF9600;
}

.details-btn {
  background-color: #FFFFFF;
  color: #333;
  border:2px solid var(--theme-color);
}

a.details-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
}
.tour-gallery {
  display: flex;
  gap: 10px;
  align-items: stretch;
  position: relative; 
}

.tour-gallery .main-image, .tour-gallery .thumbnail-grid {
    border-radius: 10px;
}
.tour-gallery .main-image {
  flex: 1;
  height: 400px;
  z-index:1;
  border-radius:10px;
}

.tour-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tour-gallery .thumbnail-grid {
    height: 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.tour-gallery .thumbnail-grid .thumb {
  width: 100%;
  height:195px;
}

.tour-gallery .thumbnail-grid .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}

/* Hotel Section 
-----------------------------*/
.hotel-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border:1px solid #DCDFE4;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hotel-card a,
.hotel-card a:visited,
.hotel-card a:hover {
    color: #000;
    text-decoration: none; /* Optional: removes underline */
}
.hotel-card .card-image{
    position: relative;
    overflow: hidden;
    height: 250px;
}
.hotel-card .card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
   background-color: #f7f7f7;
}

.hotel-card .card-content {
    padding:10px;
}
.hotel-card .card-content .card-title{
    font-size:15px;
    font-weight:700;
    color:#000;
    margin:0 0 10px 0;
}
.hotel-card .card-content .card-title a, 
.hotel-card .card-content .card-title a:hover{
   color:#000;
   text-decoration:none;
}
.hotel-card .card-content .card-location, 
.hotel-card .card-content .card-hotelcategory {
    font-size:12px;
    color:#666;
    margin:0 0 3px 0;
    padding:0;
}
.hotel-card .card-content .card-hotelprice {
    font-size:16px;
    font-weight:700;
}

.hotelprice-col{
    border:1px solid #C7C8C9;
    padding:20px;
    border-radius:10px;
}

.hotel-gallery {
  display: flex;
  gap: 10px;
  align-items: stretch;
  position: relative; 
}

.hotel-gallery .main-image,
.hotel-gallery .thumbnail-grid {
  flex: 1;
  height: 400px;
  z-index:1;
}

.hotel-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hotel-gallery .thumbnail-grid {
    height: 400px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.hotel-gallery .thumbnail-grid .thumb {
  width: 100%;
  height:195px;
}

.hotel-gallery .thumbnail-grid .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}

.hotelBadge-column{
    border:1px solid #C7C8C9;
    border-radius:10px;
    padding:20px;
}
.hotelBadge-column .price-column{
    background:#DFE8D2;
    padding:20px;
    line-height:auto;
}
.hotelBadge-column .priceCard ul {
  list-style: none;
  padding: 10px 0; 
  position: relative;
  margin:0;
}

.hotelBadge-column .priceCard ul li {
  position: relative;
  padding-left: 20px; 
  font-size:13px;
}

.hotelBadge-column .priceCard ul li::before {
  content: "✔"; 
  position: absolute;
  left: 0;
  top: 0;
  color: #333; 
  font-size: 14px;
  line-height: 1.375rem;
}

.hotelpage{
    font-size:14px;
    border-bottom:1px solid #e1e1e1;
}
.hotelpage p{
    line-height: 1.575rem;
}
.hotelpage .hotelPolicy-col ul li, 
.hotelpage .hotelFacilities-col ul li, .hotelpage .hotelDescription-col ul li{
    line-height: 1.675rem;
}
.hotelpage h4{
    font-size:1.2rem;
    font-weight:700;
}
.hotelpage h5{
    font-size:0.9rem;
    font-weight:600;
}
.hotelpage-title{
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.7rem;
    color:#000;
    border-left:5px solid #FFC107;
    padding-left:8px;
    margin-bottom:20px;
}
.hotelpage .ulMargin{
    margin-left:8px;
    padding-left: 8px;
    list-style-type: disc;
    line-height: 1.575rem;
}
.hotelpage .ulChecklist ul, .hotelpage .ulCrosslist ul {
  list-style: none; 
  padding-left: 0;
}

.hotelpage .ulChecklist ul li, .hotelpage .ulCrosslist ul li {
  position: relative;
  padding-left: 25px; 
  margin-bottom: 5px;
}

.hotelpage .ulChecklist ul li::before {
  content: "✔"; 
  position: absolute;
  left: 0;
  top: 0;
  color: green; 
  font-size: 16px;
  line-height: 1.375rem;
}
.hotelpage .ulCrosslist ul li::before {
  content: "✖"; 
  position: absolute;
  left: 0;
  top: 0;
  color: red; 
  font-size: 16px;
  line-height: 1.375rem;
}
.hotelpage .hoteltarrif-col table th {
    background:#f1f1f1;
}



/* About Section - Home Page
------------------------------*/
.about {
    background-color: #f4f4f4;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: rgba(var(--theme-color-rgb), 0.05);
  color: var(--theme-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--theme-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: rgba(var(--theme-color-rgb), 0.8);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  background-color: #fff;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: rgba(var(--theme-color-rgb), 0.05);
  color: var(--theme-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--theme-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/* Stats Section - Home Page
------------------------------*/
.stats {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  position: relative;
  padding: 120px 0;
}

.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.stats:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.6);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--default-color-rgb), 0.6);
}


/* category Section - Home Page
------------------------------*/
.category-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      padding: 0;
      background:#f1f1f1;
    }
    .category-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s;
	  width: 100%;
      height: 350px;
    }
    .category-card img:hover {
      transform: scale(1.20);
	  transition: transform 0.8s;
    }
    .category-card img {
      width: 100%;
      height: 100%;
      display: block;
	  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.8s;
    }
       .category-info {
   position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px 25px; /* Add horizontal padding for breathing room */
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  text-align: left; /* Align text to the left */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);

}

    
    .category-title h4 {
      font-size: 20px;
      color: #fff;
      font-weight: 800;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
      letter-spacing: -0.9px;
      margin: 0;
      display: inline-block; /* Optional: ensures it behaves nicely inside centered text */
    }

    .category-description {
      font-size: 0.9em;
      margin-top: 5px;
    }

/* Call-to-action Section - Home Page
------------------------------*/
.call-to-action {
  --default-color: #ffffff;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  padding: 80px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--theme-color);
  border: 2px solid var(--theme-color);
}

/* Contact Section - Home Page
------------------------------*/
.contact .info-item {
  background: rgba(var(--default-color-rgb), 0.06);
  padding: 30px;
  border-radius:10px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--theme-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.categWrapper_dc{}
.categWrapper_dc .imgItem-wrap {
    background: #f1f1f1;
    height: 300px;
    position: relative;
    padding: 0;
    overflow: hidden;
	border-radius: 10px;
}

.categWrapper_dc .imgItem-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 300px;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

.categWrapper_dc .imgItem-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1); 
    z-index: 2;
    transition: background 0.6s ease; 
}

.categWrapper_dc .imgItem-wrap:hover img {
    transform: scale(1.1); 
}

.categWrapper_dc .imgItem-wrap:hover::before {
    background: rgba(0, 0, 0, 0.3); 
}

.categWrapper_dc .categTitle_dc {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 3;
    color: #fff;
    font-size: 1.25rem;
	font-weight:700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin: 0;
    transition: color 0.6s ease;
}

.bottom-bar {
  display: none; /* ✅ Hides it initially */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 2px solid #ddd;
  padding: 10px 20px;
  box-sizing: border-box;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

    /* Price text */
    .price-label {
      font-size: 14px;
      color: #333;
      font-weight: bold;
    }

    /* Button inside bar */
    .btn-bottom {
      padding: 10px 20px;
      background-color: #28a745;
      color: #fff;
      font-weight:600;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      margin-right:60px;
      margin-bottom:4px;
    }
    .btn-bottom:hover {
      background-color: #218838;
      color:#fff;
    }

    @media screen and (max-width: 600px) {
      .price-label {
        font-size: 14px;
      }

      .btn-bottom {
        padding: 10px 16px;
        font-size: 16px;
        color:#fff;
        font-weight:600;
      }
    }
    
.whatsapp-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4CC345; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.whatsapp-chat-btn img {
    width: 50px;
    height: 50px;
}

.whatsapp-chat-btn:hover {
    transform: scale(1.1);
    background-color: #4CC345;
}

.guide-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-3px);
}

.guide-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #f1f1f1;
}

.guide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.guide-card:hover .guide-image {
    transform: scale(1.05);
}

.guide-info {
    padding: 0 10px 15px 10px;
    margin:0;
    display: block; 
}

.guide-name {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 4px;
    color: #000;
}

.guide-language {
    font-size: 14px;
    color: #555;
    margin-top: 6px;
}

.guide-btn {
    margin-top: 10px; /* Spacing above the button */
}

.guide-button {
    display: inline-block; /* Or block, based on your design */
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 25px;
    background-color: #659A31;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.guide-button:hover {
    background-color: #70AB37;
    color: #fff;
}


.agra-hero-section {
      background-image: url('/image/catalog/homepage/agra/agra-banner.jpg'); 
      background-size: cover;
      background-position: center;
      height: 550px;
      position: relative;
    }

    .agra-overlay {
      background: rgba(0, 0, 0, 0.3);
      height: 100%;
      display: flex;
      align-items: center;
    }

    .agra-hero-content {
      max-width: 650px;
      padding-left: 20px;
    }

    .agra-subtitle {
      font-size: 28px;
      font-weight: 600;
      color: #fff;
    }

    .agra-main-title {
      font-size: 70px;
      font-weight: 800;
      color: #fff;
      margin-top: -20px;
    }

    .agra-description {
      font-size: 18px;
      color: #e8e8e8;
      margin-bottom: 20px;
    }

    /* Menu Navigation */
    .agra-nav-menu {
      background-color: #f8f9fa;
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
    }

    .agra-nav-menu .nav-link {
        font-size:13px;
      font-weight: 600;
      text-transform: uppercase;
      padding: 15px 20px;
      color: #000;
    }

    .agra-nav-menu .nav-link:hover,
    .agra-nav-menu .nav-link.active {
      color: var(--theme-color);
      border-bottom: 2px solid var(--theme-color);
    }

    @media (max-width: 767.98px) {
      .agra-main-title {
        font-size: 42px;
      }

      .agra-subtitle {
        font-size: 20px;
      }

      .agra-description {
        font-size: 16px;
      }

      .agra-nav-menu .nav-link {
        font-size: 13px;
        padding: 10px;
      }
    }
.instagram-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
}

.instagram-chat-btn img {
    width: 50px;
    height: 50px;
}

.instagram-chat-btn:hover {
    transform: scale(1.1);
    background-color: #c72f63;
}

/* Desktop / Tablet */
.swiper {
  width: 100%;
  height: 500px;
}

.swiper-slide {
  background: #f9f9f9;
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden; 
}

.swiper-slide img {
  position: absolute;
  inset: 0; 
  display: block;
  width: 100%;
  height: 500px;
  /*object-fit: cover; */
  z-index: 1;
  border-radius: 10px; 
  pointer-events: none; 
}

@media (max-width: 767px) {
  .swiper {
    width: 100%;
    height: auto;
  }

  .swiper-slide {
      width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    position: static;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    border-radius: 10px;
    pointer-events: auto; 
  }
}