body {
     font-family: "Poppins", sans-serif;
}
h1,h2,h3,h4,h5,h6{
	  font-family: "Playfair Display", serif;
}
h2{
	color:#1E4B7A;	
}
.hero-section {
    background: url('../images/hero.jpg') center/cover no-repeat;
    min-height: 90vh;
    position: relative;
	z-index:-1;
}
.about-list li{
	Display:inline-flex;
	padding:5px;
	font-size:14px;
}
.book a{
background:#1E4B7A !important;
}
.nav-link:focus, .nav-link:hover {
    color: rgb(30 75 122);
}

.about-list img{
width: 40px;
    padding-right: 15px;
    padding-bottom: 15px;
}
.navbar-nav{
	margin-left: 29rem;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.homestay h4{ 
padding-bottom: 15px;
    border-bottom: 1px solid #c5c5c5;
    width: fit-content;
}
.homestay ul{ 
padding-bottom: 15px;
    border-bottom: 1px solid #c5c5c5;
    width: fit-content;
}
.size li{
	font-size:16px;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}

.search-box {
    max-width: 900px;
    margin: auto;
}

.cta-section {
    background: #1E4B7A;
}
.cta-section a{
    background: #fff;
	color:#1E4B7A;
	font-weight:600;
}
.cta-section h4{
    color: #ffffff;
}
.card img {
    height: 220px;
    object-fit: cover;
}
.image-container h3{ 
}
.image-container {
    position: relative; /* Essential for positioning the text overlay relative to the image */
    display: inline-block; /* Helps the container wrap around the image dimensions */
    cursor: pointer; /* Changes the cursor to a hand icon on hover */
}

.image-container img {
    display: block; /* Removes default bottom margin/spacing issues */
    width: 100%;
    height: auto;
}
.explore i{
	color:#1E4B7A;
	padding-right:5px;
	font-weight:bold;
}
.explore span
{
	color:#1E4B7A; 
	font-weight:500;
}
.image-overlay-text {
    position: absolute; /* Positions the text over the image */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color:#1e4b7acf; /* Black background with 70% opacity */
    color: #fff;
    visibility: hidden; /* Hides the text initially */
    opacity: 0; /* Makes it fully transparent initially */
    display: flex; /* Helps in centering the text */
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease; /* Smooth transition effect for opacity */
}

.image-container:hover .image-overlay-text {
    visibility: visible; /* Makes the text visible on hover */
    opacity: 1; /* Fades the text in */
}
/* Masonry image gallery styling */
.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery .images {
  gap: 15px;
  max-width: 85%;
    columns: 5 310px;
  list-style: none;
}
.gallery .images .img {
  display: flex;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
  border-radius: 4px;
}
.gallery .images img {
  width: 100%;
  transition: transform 0.2s ease;
}
.gallery .images .img:hover img {
  transform: scale(1.1);
}
/* Image lightbox styling */
.lightbox {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: fixed;
  visibility: hidden;
  background: rgba(0,0,0,0.65);
}
.lightbox.show {
  visibility: visible;
}
.lightbox .wrapper {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100%;
  padding: 20px;
  max-width: 850px;
  background: #fff;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  transition: transform 0.1s ease;
}
.lightbox.show .wrapper {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.wrapper :where(header, .details) {
  display: flex;
  align-items: center;
}
.wrapper header {
  justify-content: space-between;
}
header .details i {
  font-size: 1.7rem;
}
header .details span {
  font-size: 1.2rem;
  margin-left: 10px;
}
header .buttons i {
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  margin-left: 10px;
  background: #6C757D;
  font-size: 1.25rem;
  line-height: 40px;
  text-align: center;
  border-radius: 0px;
  transition: 0.2s ease;
}
header .buttons i:hover {
  background: #5f666d;
}
.wrapper .preview-img {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.preview-img .img {
  max-height: 65vh;
}
.preview-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.rooms h4{
	color:#1E4B7A !important;
}
.rooms .fw-bold{
font-weight: 100 !important;	
}
.price{
	color:#1E4B7A !important;
	font-size:20px;
font-family: "Playfair Display", serif;	
font-weight: bold;
}
.card{
	border: 1px solid #e1e1e1 !important;
	
}
.btn-primary{
		background-color:#CDA45E !important;
		color:#000;
}
.card .btn{
	background-color:#CDA45E !important;
}
.btn-primary:hover{
		background-color:#1E4B7A !important;
}
.rooms .btn a{
	color:#fff;
}
.rooms .btn:hover a{
	color:#1E4B7A;
}
.card .btn:hover{
	background-color:#1E4B7A;
}
.carousel-item h5{
	color:#1E4B7A;
}
.fa-sm{ 
    color: #CDA45E !important;
}
.pe-2{
	color: #CDA45E !important;
}
/* Responsive media query code */
@media screen and (max-width: 688px) {
  .lightbox .wrapper {
    padding: 12px;
    max-width: calc(100% - 26px);
  }
  .wrapper .preview-img {
    margin-top: 15px;
  }
  .gallery .images {
    max-width: 100%;
    padding: 0 13px;
    margin-top: 20px;
  }
}
.bg-dark-ets{
	background-color: #333 !important;
}
@keyframes pulse {
  0% {
    transform: scale(1); 
  }
  70% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1); 
  }
}

.pulse-effect {
  animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
  /* Ensures the element does not jump around during animation */
  transform-origin: center; 
}
.gallery .images img:hover{
	filter: grayscale(80%);
}
.btn:hover {
    color: #1e4b7a !important; 
    background-color: #ffffff !important;
    border-color: snow;
    box-shadow: none !important;
}
.about h2::before, h2::after {
    display: inline-block;
    content: "";
    border-top: 1px solid #e3e3e3 !important;
    width: 25rem;
    margin: 0 1rem;
    transform: translateY(-0.5rem);
}
.landing h2::before, h2::after {
    display: inline-block;
    content: "";
    border-top: 1px solid #e3e3e3 !important;
    width: 25rem;
    margin: 0 1rem;
    transform: translateY(-0.5rem);
}
 
.room .btn{
	background: #1e4b7a;
	box-shadow:none;
}
.breadcrumb .text-center{
	width:78%;
	color:#fff;
}

@media screen and (max-width: 768px) { 
.breadcrumb .text-center{
Display:none;
}
 }
 @media screen and (min-width:1024px) and (max-width: 1200px) { 
 .navbar-nav {
    margin-left: 12rem;
}
 }
.breadcrumbs{
	    background: #1e4b7a;
}
.breadcrumb-item a{
	color:#fff;
}
.breadcrumb-item.active {
	color:#CDA45E !important;
}
.icon-box i{
	font-size:24px;
	color:#1e4b7a !important;
}
.Homestay img{
	width:100%;
}
.about h5{
color: #000;
}
.about .card img {
    height: 445px;
    object-fit: cover;
}
.booking-box{
	
padding:10px;

}
#room-list-container {
    margin-top: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
}
.room-sorting select {
    word-wrap: normal;
    border: 1px solid #1e4b7a;
    padding: 5px;
    color: #1e4b7a;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
  z-index:99;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}
	
.room-list .card .btn {
    background-color: #1e4b7a !important;
}
.room-list .card .btn:hover {
    background-color: #CDA45E !important;
	color:#fff !important;
}
.room-list .card .btn:hover a { 
	color:#fff !important;
}
.gal img{
	width:100%;
	border: 5px solid #e7e7e7;
    border-radius: 20px 10px !important;
}
.gal .nav-link {
	font-size:15px !important;
}
.col-md-3 figure {
	position: relative;
}
.col-md-3 figure::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.col-md-3 figure:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 110%;
		height: 110%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 110%;
		height: 110%;
		opacity: 0;
	}
}
.exp img{
	width:100%;
}
.exp .p-2{
	background: #cda4682b;
    padding-left: 18px !important;
    padding-right: 18px !important;
}
.exp .lead{
	font-size:16px;
}
.sm{
	font-size:14px;
}
.follow-us a{
	margin-right:15px;
} 