:root {
  --primary-color: #ffd700; /* Gold */
  --secondary-color: #c0c0c0; /* Silver */
  --text-color: #f0f0f0; /* Off-white text */
  --bg-color: #000000; /* Deep Black background */
  --bg-card: #1a1a1a; /* Dark Gray for cards */
  --bg-charcoal: #121212; /* Charcoal */
  --bg-dark-texture: #0a0a0a; /* Very Dark Gray */
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --header-height: 70px;
  --text-xxs: 0.77rem;
  --text-xs: 0.90rem;
  --text-sm: 0.95rem;
  --text-md: 1.125rem;
  --text-base: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.50rem;
  --body-font: var(--font-main);
  
  /* Mapped for compatibility */
  --primary-light: var(--text-color);
  --secondary-light: var(--primary-color);
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--bg-color);
  text-align: justify;
}

/* Redefine utility classes for new theme */
.primary-bg { background-color: var(--bg-charcoal); }
.secondary-bg { background-color: var(--bg-card); }
.primary-light-bg { background-color: var(--secondary-color); } /* Silver bg */

.primary-text { color: var(--primary-color); } /* Gold text */
.secondary-text { color: var(--secondary-color); } /* Silver text */
.primary-light-text { color: var(--text-color); } /* Off-white text */

/* Update specific components */
.card.secondary-bg {
    background-color: var(--bg-card);
    border: 1px solid #333;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.sidebar-box {
    background-color: var(--bg-card);
    border: 1px solid #333;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
}

.button-secondary {
  background: linear-gradient(45deg, #ffd700, #b8860b);
  color: #000;
}
.button-secondary:hover {
  background: linear-gradient(45deg, #b8860b, #ffd700);
  color: #000;
}

/* genral settings */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,700;0,800;0,900;1,400;1,500;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");



a, a:hover, a:active{ text-decoration: none;}
/* custom common css */
/* background color css start */




/* background color css end */
/* color css start */




/* color css end */
/* typography css start */
.text-xxs { font-size: var(--text-xxs); }
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-md { font-size: var(--text-md); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
/* typography css end */
/* button css start */
.button-primary{
  background-color: var(--bg-charcoal);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all .6s ease-out;
}

/*.button-primary:hover, .button-primary:focus, .button-primary:active, .button-primary.active{
  background-color: var(--secondary-color);
  color: var(--primary-light);
  margin-right: 2px;
  border-color: var(--primary-light) !important;
}*/



.whatsapp-button{
  background-color: #058a07;
  color: var(--primary-light);
  transition: all .3s ease-out;
}
.whatsapp-button:hover, .whatsapp-button:focus, .whatsapp-button:active, .whatsapp-button.active{
  background-color: #036309;
  color: var(--primary-light);
}
.enquiry-button{
  background-color: var(--primary-color);
  color: var(--primary-light);
  border: 1px solid var(--primary-light);;
  transition: all .3s ease-out;
}
.enquiry-button:hover, .enquiry-button:focus, .enquiry-button:active, .enquiry-button.active{
  background-color: var(--primary-light);
  color: var(--primary-color);
  border: 1px solid var(--primary-light);;
}
.slider-button, .slider-button:hover, .slider-button:focus, .slider-button:active{
  background-color: var(--primary-light) !important;
  color: var(--primary-color) !important;
}
.bounce {
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-15%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}
/* button css end */
/* border css start */
.border-primary { border-color: var(--primary-color) !important; }
/* border css end */
.location-container::placeholder{color: var(--primary-light) !important;}
.location-container::-webkit-scrollbar { width: 0px; height: 1.5px; }
/* Track */
.location-container::-webkit-scrollbar-track { background: transparent; }
/* Handle */
.location-container::-webkit-scrollbar-thumb { background: #fff; }
/* Handle on hover */
.location-container::-webkit-scrollbar-thumb:hover { background: #fff; }
/* -------------------------------------------Common Section css start----------------------------------------------------- */
/* navbar css start */
.nav-link
.nav-link.primary-light-text.active, .nav-link.primary-light-text:hover{ border-top-right-radius: 5px; border-top-left-radius: 5px; border-bottom: 2px solid #F7F7F7; color: var(--primary-light);}
/* bottom navigation start */
.location-container {
  width: 85%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.search-form { border-bottom: 1px solid var(--primary-light);}
.search-list:hover{ background-color: var(--primary-color); display: inline-block; color: var(--bg-charcoal)!important;}
.location-container a{ border-bottom: 2px solid transparent; transition: all .6s ease-in-out; white-space: nowrap;}
.location-container a:hover{ border-bottom: 2px solid var(--primary-light);}
/* .search-list-container{max-height: 236px!important; overflow-y: scroll!important;} */
#search-results{max-height: 236px!important; overflow-y: scroll!important;}
#search-results::placeholder{color: var(--primary-light) !important;}
#search-results::-webkit-scrollbar { width: 2px; height: 1.5px; }
/* Track */
#search-results::-webkit-scrollbar-track { background: transparent; }
/* Handle */
#search-results::-webkit-scrollbar-thumb { background: var(--primary-color); }
/* Handle on hover */
#search-results::-webkit-scrollbar-thumb:hover { background: var(--primary-color);; }
/* navbar css end */
/* footer css start */
footer{
  border-top: 2px solid var(--bg-card);
}
/* footer css end */
/* -------------------------------------------home page css start----------------------------------------------------- */

/* home banner-section start */
/*.banner-images{ height: 23rem;}*/
#bannerSlider .owl-nav {
  position: absolute;
  top: 45%;
  right: 0%;
  left: 0%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#bannerSlider .owl-prev, #bannerSlider .owl-next{
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem !important;
  border-radius: 5px;
  opacity: 0.2;
}
#bannerSlider .owl-prev:hover, #bannerSlider .owl-next:hover{ opacity: 1; }
#bannerSlider .owl-dots{display: none;}
/* location details page css start */
.slider{ max-height: 16rem; overflow-y: scroll;}
.slider::placeholder{ color: var(--primary-light) !important ;}
.slider::-webkit-scrollbar { width: 2px; height: 0px; }
/* Track */
.slider::-webkit-scrollbar-track { background: transparent; }
/* Handle */
.slider::-webkit-scrollbar-thumb { background: #fff; }
/* Handle on hover */
.slider::-webkit-scrollbar-thumb:hover { background: #fff; }
.large-image{ height: 16rem;}
.slider .small-image img{ height: 4.5rem; cursor: pointer;}
.location-list li:hover{ background-color: var(--primary-color); color: var(--bg-charcoal) !important; }
.location-button a{ background-color: var(--primary-light); color: var(--primary-color);}
.location-button:hover a, .location-button:focus a, .location-button:active a{ background-color: var(--primary-color); color: var(--bg-charcoal) !important; }

/* ------------------------------------------- about details --------------------------------------------------- */
.location-images{ width: 47%; height: 16rem; overflow: hidden; cursor: pointer;}
.location-images img{ transform: scale(1); }
.location-images:hover img{ transform: scale(1.2); }
.list-numbered { counter-reset: line; }
.list-numbered > li:before {
	position: absolute;
	left: -2%;
  width: 22px;
	height: 22px;
  background-color: var(--primary-light);
	border-radius: 50%;
	color: var(--primary-color);
	counter-increment: line;
	content: counter(line);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.star{ background-color: #121212;}
.star svg{ color: var(--primary-light);}
.filled-icon,.hover-starIcon { background-color: rgb(255, 110, 0) !important; }
.lightbox-modal{ width: 75%;}
/* ------------------------------------------- media query ----------------------------------------------------- */
/* small device media query start */
@media (max-width: 767px) {
  .location-container { width: 100%; }
  .slider { overflow-y: scroll; overflow-x:scroll;}
  .slider .small-image .w-100{ min-width: 4.5rem !important; max-width: 6rem !important;}
  .lightbox-modal-container{ height: 100vh;}
  .lightbox-modal{ width: 100%;}
  .lightbox-modal-img-container{ height: 50vh;}
  .slider {max-height: 25rem;}
}
/* small device media query end */
/* medium device media query start */
@media (min-width: 768px) and (max-width: 1024px) {
  .large-image{ height: 16rem;}
  /* .slider .small-image img{ height: 4rem; width: 4rem; cursor: pointer;} */
  .slider .small-image .w-100{ min-width: 3rem !important; max-width: 3rem !important; height: 3rem;}
  .location-images { height: 7rem; }
  .lightbox-modal-container{ height: 100vh;}
  .lightbox-modal{ width: 100%;}
  .lightbox-modal-img-container{ height: 50vh;}
}
/* small device media query end */

.lightbox-modal-img-container{ height: 78vh;}
  @media(min-width: 1366px) and (max-width: 1600px){
    .lightbox-modal-img-container{ height: 80vh;}
  }

/* link color */

.link{
	color: var(--secondary-light) !important;
}


.banner-slider{ padding-bottom: 10px}
/*.banner-item .banner-images{ width: 19rem; }*/
.banner-slider::placeholder{color: var(--primary-light) !important;}
.banner-slider::-webkit-scrollbar { width: 0px; height: 1.5px; }
/* Track */
.banner-slider::-webkit-scrollbar-track { background: transparent; }
/* Handle */
.banner-slider::-webkit-scrollbar-thumb { background: #fff; }
/* Handle on hover */
.banner-slider::-webkit-scrollbar-thumb:hover { background: #fff; }
@media (max-width: 767px) {
  /*.banner-item .banner-images { width: 15rem; }*/
  /*.large-image{ height: 25rem;}
  .banner-images { height: 18rem; }*/
  .ribbon { font-size: 13px !important;}
}

.searchBarContainer {top:50%;}
.searchBarContainer.active{ left: 0;}
.searchbar{ width: 3.5rem;}
.searchbar.active{ width: 100%;}


@media (max-width: 767px) {
	.search-list-container{
		max-height: 20rem;
		overflow-y: scroll;
	}
}






.sidebar-card::-webkit-scrollbar { width: 2px; height: 0px; }
/* Track */
.sidebar-card::-webkit-scrollbar-track { background: transparent; }
/* Handle */
.sidebar-card::-webkit-scrollbar-thumb { background: #fff; }
/* Handle on hover */
.sidebar-card::-webkit-scrollbar-thumb:hover { background: #fff; }
.accordion-button:focus {
    box-shadow: none;
    outline: none;
}
/* new banner css start */
.ribbon {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  .ribbon {
    --f: .3em; /* control the folded part */
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1.8;
    padding-inline: 1lh;
    padding-bottom: var(--f);
    clip-path: polygon(
      100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)), 0 100%,0 calc(100% - var(--f)),999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px));
    transform: translate(calc((1 - cos(45deg))*100%), -100%) rotate(45deg);
    transform-origin: 0% 100%;
  }
  .featured-box{ border: 2px solid #B38728;}
  .premium-box{ border: 2px solid #095800;}
  .verified-box{ border: 2px solid #004d80;}
  .exclusive-box{ border: 2px solid #AA0000;}
  .ribbon.featured{ background-image: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);text-shadow: 1px 1px 2px #121212; border-image: conic-gradient(#B38728 0 0) 51%/var(--f);}
  .ribbon.premium{ background-image: linear-gradient(to right, #095800, #1fcf0b, #095800); text-shadow: 1px 1px 2px #121212; border-image: conic-gradient(#095800 0 0) 51%/var(--f); }
  .ribbon.verified{ background-image: linear-gradient(to right, #004d80, #278dd1, #004d80); border: none !important; text-shadow: 1px 1px 2px #121212; border-image: conic-gradient(#004d80 0 0) 51%/var(--f); }
  .ribbon.exclusive{ background-image: linear-gradient(-60deg, #AA0000, #fc5151, #AA0000); text-shadow: 1px 1px 2px #121212; }
  /* new banner css end */
  .badge-blue{ background-image: linear-gradient(to right, #004d80, #278dd1, #004d80); border: none !important; text-shadow: 1px 1px 2px #121212; border-image: conic-gradient(#004d80 0 0) 51%/var(--f);}
  .badge-success{ background-image: linear-gradient(to right, #095800, #1fcf0b, #095800); text-shadow: 1px 1px 2px #121212; border-image: conic-gradient(#095800 0 0) 51%/var(--f); }
  .badge-danger{ background-image: linear-gradient(-60deg, #AA0000, #FC5151, #AA0000); text-shadow: 1px 1px 2px #121212; }
  .banner-badge .badgeBeforeHover{ display: block; gap:10px}
  .banner-badge:hover .badgeBeforeHover{ display: none;}
  .banner-badge .badgeAfterHover{ display: none;}
  .banner-badge:hover .badgeAfterHover{ display: flex; gap:10px}
  .badgeBeforeHover{
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 90px;
    border-left-width: 0px;
    border-bottom: 60px solid #0097fe;
    transition: all .3s ease-in-out;
  }
  .badgeAfterHover{ background-color: #0097fe;padding: 10px; align-items: center;}
  .badgeBeforeHover svg{ margin-top: 1.5rem; margin-left: 0.5rem; }

  .verified{border:2px solid #0097fe !important;}
  .approved{border:2px solid #007400 !important;}
  .exclusive{border:2px solid #AA0000 !important;}
  
   a.text-sm.fw-semibold.primary-light-text.px-2.active {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom: 2px solid #F7F7F7;
    color: var(--primary-light);
}

.editor h1, .editor h1 b {
    font-size: 2.2rem !important;
    color: var(--primary-color) !important;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700 !important;
    text-transform: capitalize;
}

.editor h2 {
    font-size: 1.8rem !important;
    color: var(--primary-light) !important;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600 !important;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 10px;
    display: table !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.editor h2 b {
    color: inherit !important;
    font-size: inherit !important;
}

.editor h3, .editor h3 b {
    font-size: 1.5rem !important;
    color: var(--primary-light) !important;
    text-align: left;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600 !important;
}

.editor h4, .editor h5, .editor h6 {
    font-size: 1.2rem !important;
    color: var(--primary-light) !important;
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600 !important;
}

.editor p, .editor p span, .editor ol li, .editor ul li {
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: var(--text-color) !important;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.editor a{
    color: var(--secondary-light) !important;
}
.editor div a, .editor p a{
    color: var(--secondary-light) !important;
    background-color: transparent !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.center h1 {
    text-align: center;
    font-weight: 700;
    padding: 3px;
}

.center .italic {
    font-style: italic;
}

.center .bold {
    font-weight: bold;
}

.custom-padding {
    padding: 6.7px;
}

.custom-width{ max-height: 200px;}
.full-width{ max-height: max-content;}
.disclaimer{
    text-align: center;
    font-weight: 700;
    padding: 3px;
    font-size: 2.5rem;
}

/* Custom Banner Slider Styles */
.banner-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.banner-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.banner-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .banner-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .banner-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.card
.sidebar-box {
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.text-secondary { color: var(--secondary-color) !important; }
.bg-dark { background-color: var(--bg-charcoal) !important; }
.location-list li:hover .link { color: var(--bg-charcoal) !important; }