
body,html {
    font-family: 'PT Serif', serif;
    background-color: #ffffff;
     overflow-x: hidden;
       margin: 0;
      padding: 0;
  }
  header {
    background-color:#F2EEE2;
    padding: 20px;
    text-align: center;
  }
  nav {
    padding: 10px;
    text-align: center;
  }
  .navbar {
    justify-content: center; /* Centers the content horizontally */
    align-items: center; /* Centers the content vertically */
  }
  
  .navbar-logo img {
    max-height: 50px; /* Adjust the size of your logo */
    width: auto; /* Maintains the logo's aspect ratio */
    margin-bottom: 20px;
  }
  
  nav a {
    color: #000;
    text-decoration: none;
    margin: 0 30px;
  }
  
  nav a:hover {
    text-decoration: underline;
    color: #AD8957;
  }
  
  
  nav a.active {
    text-decoration: underline; /* Adds underline for active link */
    color: #b48146; /* Active link color */
  }
  
  .breadcrumb {
    padding: 0;
    background-color: transparent!important;
    display: inline-block;
    list-style: none;
    margin-bottom: 0px!important;
  }
  
  .breadcrumb-item {
    display: inline;
    color: #666;
  }
  
  .breadcrumb-item a {
    color: #666;
    text-decoration: none;
    margin-left: 0px;
    margin-right: 0px;
  }
  .breadcrumb>.active {
    color: #000000 !Important;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #666;
  }

.responsive-image{
    width: 100%;
}
  
  /*code start from here for mobile nav */

/* Base Styles */
header.mobile {
  position: relative;
}

#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #333;
  margin: 4px auto;
}

/* Full-Screen Sliding Menu */
#sliding-menu {
  position: fixed;
  top: 0;
  left: -100%; /* Hidden off-screen */
  width: 80%; /* Cover entire screen */
  height: 100%;
  background-color: #F2EEE2;
  color: #fff;
  z-index: 1000;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#sliding-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 30px;
}

#sliding-menu ul li {
  margin: 20px 0;
}

#sliding-menu ul li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

/* Child Menu */
#sliding-menu ul li .child-menu {
  display: none; /* Hidden by default */
  padding-left: 20px;
  margin-top: 10px;
}

#sliding-menu ul li:hover > .child-menu {
  display: block; /* Show on hover */
}

/* Close Button */
#close-menu {
  position: absolute;
  top: 0px;
  right: 20px;
  background: none;
  border: none;
  color: black;
  font-size: 40px;
  cursor: pointer;
}

/* Active Menu */
#sliding-menu.active {
  left: 0; /* Slide into view */
}

body.menu-open {
  overflow: hidden; /* Prevent scrolling when menu is open */
}



@media (max-width: 768px) {
.dektop{
  display:none;
}
.homepage-banner{
  display: none;
}
}

@media (min-width: 768px) {
  .mobile{
    display:none;
  }
  .homepage-mobile-banner{
    display: none;
  }
  }

  
  
  
 

