body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #e8ecf2;
  background-image:
    linear-gradient(
      180deg,
      rgba(248, 250, 252, 0.93) 0%,
      rgba(236, 241, 247, 0.95) 45%,
      rgba(228, 234, 243, 0.96) 100%
    ),
    url(../images/bg_image.png);
  background-position: center, center;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  background-repeat: no-repeat, no-repeat;
}
p {
	margin-bottom: 0px;
	font-size: 14px;
	color: #666666;
	line-height: 30px;
}
a {
	text-decoration: none!important;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

a.filled-button {
	background-color: #1e3a5f;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
}

/* Small badge shown alongside price on featured cards */
.own-badge {
	display: inline-block;
	background: #ff7f26; /* orange */
	border: 1px solid #e66b00; /* darker orange */
	padding: 6px 10px;
	border-radius: 6px;
	font-size: 13px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 2px 8px rgba(246,132,29,0.12);
}

@media (max-width: 576px) {
	.own-badge { display: none; }
}

a.filled-button:hover {
	background-color: #fff;
	color: #1e3a5f;
}

a.border-button {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
}

a.border-button:hover {
	background-color: #fff;
	color: #1e3a5f;
}

.section-heading {
	text-align: center;
	margin-bottom: 80px;
}

.section-heading h2 {
	font-size: 36px;
	font-weight: 600;
	color: #1e1e1e;
}

.section-heading em {
	font-style: normal;
	color: #c89b54;
}

.section-heading span {
	display: block;
	margin-top: 15px;
	text-transform: uppercase;
	font-size: 15px;
	color: #666;
	letter-spacing: 1px;
}

#preloader {
  overflow: hidden;
  background: #1e3a5f;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Sub Header Style */

.sub-header {
	background-color: #1e3a5f;
	height: 46px;
	line-height: 46px;
}

.sub-header ul li {
	display: inline-block;
}

.sub-header ul.left-info li {
	border-left: 1px solid rgba(250,250,250,0.3);
	padding: 0px 20px;
}

.sub-header ul.left-info li:last-child {
	border-right: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.left-info li i {
	margin-right: 10px;
	font-size: 18px;
}

.sub-header ul.left-info li a {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.sub-header ul.right-icons {
	float: right;
}

.sub-header ul.right-icons li {
	margin-right: -4px;
	width: 46px;
	display: inline-block;
	text-align: center;
	border-right: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.right-icons li:first-child {
	border-left: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.right-icons li a {
	color: #fff;
	transition: all 0.3s;
}

.sub-header ul.right-icons li a:hover {
	opacity: 0.75;
}



/* Header Style */
header {
	position: absolute;
	z-index: 99999;
	width: 100%;
	background-color: transparent!important;
	height: 80px;
	-webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
header .navbar {
	padding: 20px 0px;
}
.background-header .navbar {
	padding: 10px 0px;
}
.background-header {
	top: 0;
	position: fixed;
	background-color: #fff!important;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}
.background-header .navbar-brand h2 {
	color: #1e3a5f!important;
}
.background-header .navbar-nav a.nav-link {
	color: #1e1e1e!important;
}
.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active>.nav-link,
.background-header .navbar-nav .nav-link.active,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show>.nav-link {
	color: #1e3a5f!important;
}
.navbar .navbar-brand {
	float: 	left;
	margin-top: 12px;
	outline: none;
}
.navbar .navbar-brand h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 42px;
	font-weight: 700;
	-webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
.navbar .navbar-brand h2 .western {
	color: #fff; /* Western - white */
}
.navbar .navbar-brand h2 .hills {
	color: #c89b54;
}
/* When header background becomes white, make brand line darker for visibility */
.background-header .navbar-brand h2 .western {
	color: #1e1e1e !important;
}
.background-header .navbar-brand h2 .hills {
	color: #c89b54 !important;
}
.navbar .navbar-brand h2 em {
	font-style: normal;
	font-size: 16px;
}
#navbarResponsive {
	z-index: 999;
}
.navbar-collapse {
	text-align: center;
}
.navbar .navbar-nav .nav-item {
	margin: 0px 15px;
}
.navbar .navbar-nav a.nav-link {
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0.5px;
	color: #fff;
	transition: all 0.5s;
	margin-top: 5px;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active>.nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show>.nav-link {
	color: #1e3a5f;
	border-bottom: 3px solid #1e3a5f;
}
.navbar .navbar-toggler-icon {
	background-image: none;
}
.navbar .navbar-toggler {
	border-color: #fff;
	background-color: #fff;	
	height: 36px;
	outline: none;
	border-radius: 0px;
	position: absolute;
	right: 30px;
	top: 20px;
}
.navbar .navbar-toggler-icon:after {
	content: '\f0c9';
	color: #1e3a5f;
	font-size: 18px;
	line-height: 26px;
	font-family: 'FontAwesome';
}



/* Banner Style */

.img-fill{
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center
}
.img-fill:before {
	content: '';
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	bottom:0;
	right: 0;
	/* Original dark overlay for banner background */
	background-color: rgba(0,0,0,.6);
}
.Modern-Slider .text-content{
	z-index: 2;
}

.img-fill img {
  min-height: 100%;
  min-width: 100%;
  position: relative;
  display: inline-block;
  max-width: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive overrides for images and cards */
.img-fluid {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
}

.amenity-card-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
}

.gallery-item img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}

.service-item img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

@media (max-width: 991px) {
	.amenity-card-image { height: 200px; }
	.gallery-item img { height: 240px; }
}

@media (max-width: 767px) {
	.amenity-card-image { height: 160px; }
	.gallery-item img { height: 180px; }
	.navbar .navbar-nav .nav-item { margin: 6px 6px; }
	header { height: auto; }
	
	/* Mobile navbar white background (original behavior) */
	header .navbar {
		background-color: #fff;
		box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
	}
	
	header .navbar-brand h2 .western {
		color: #1e1e1e !important;
	}
	
	header .navbar .navbar-nav a.nav-link {
		color: #1e1e1e !important;
	}
	
	header .navbar .navbar-nav .nav-link:hover,
	header .navbar .navbar-nav .active>.nav-link,
	header .navbar .navbar-nav .nav-link.active {
		color: #1e3a5f !important;
	}
	
	header .navbar-toggler {
		border-color: #1e1e1e;
		background-color: transparent;
	}
	
	header .navbar-toggler-icon {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231e1e1e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
	}
}

/* Responsive map iframe */
.map-iframe {
	width: 100%;
	height: 420px;
	border: 0;
}

@media (max-width: 767px) {
	.map-iframe { height: 260px; }
}

/* Minor helpers for property/blog images */
.property-img { height: auto; }
.blog img { max-width: 100%; height: auto; }

.Grid1k {
  padding: 0 15px;
  max-width: 1200px;
  margin: auto;
}

.blocks-box,
.slick-slider {
  margin: 0;
  padding: 0!important;
}

.slick-slide {
  float: left;
  padding: 0;
}

.Modern-Slider .item .img-fill {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height:95vh;
}

.Modern-Slider .item-1 .img-fill {
	background-image: url(../images/bg_image.png);
}

.Modern-Slider .item-2 .img-fill {
	background-image: url(../images/bg2.png);
}

.Modern-Slider .item-3 .img-fill {
	background-image: url(../images/slider-image-3-1920x900.jpg);
}

.Modern-Slider .NextArrow{
  position:absolute;
  top:50%;
  right:30px;
  border:0 none;
  background-color: transparent;
  text-align:center;
  font-size: 36px;
  font-family: 'FontAwesome';
  color:#FFF;
  z-index:5;
  outline: none;
  cursor: pointer;
}

.Modern-Slider .NextArrow:before{
  content:'\f105';
}

.Modern-Slider .PrevArrow {
  position:absolute;
  top:50%;
  left:30px;
  border:0 none;
  background-color: transparent;
  text-align:center;
  font-size: 36px;
  font-family: 'FontAwesome';
  color:#FFF;
  z-index:5;
  outline: none;
  cursor: pointer;
}

.Modern-Slider .PrevArrow:before{
  content:'\f104';
}

ul.slick-dots {
  display: none!important;
}

.Modern-Slider .text-content {
	text-align: left;
  	width: 75%;
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
}

.Modern-Slider .item h6 {
  margin-bottom: 15px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color:#1e3a5f;
  animation:fadeOutRight 1s both;
}

.Modern-Slider .item h4 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color:#FFF;
  text-shadow: 0 6px 18px rgba(0,0,0,0.45);
  overflow:hidden;
  animation:fadeOutLeft 1s both;
}

.Modern-Slider .item p {
	max-width: 570px;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 40px;
	text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

.Modern-Slider .item a {
  margin: 0 5px;
}

.Modern-Slider .item.slick-active h6{
  animation:fadeInDown 1s both 1s;
}

.Modern-Slider .item.slick-active h4{
  animation:fadeInLeft 1s both 1.5s;
}

.Modern-Slider .item.slick-active{
  animation:Slick-FastSwipeIn 1s both;
}

.Modern-Slider .buttons {
  position: relative;
}

.Modern-Slider {background:#000;}


/* ==== Slick Slider Css Ruls === */
.slick-slider{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.slick-track{position:relative;top:0;left:0;display:block}
.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left /* If RTL Make This Right */ ;height:100%;min-height:1px}
.slick-slide.dragging img{pointer-events:none}
.slick-initialized .slick-slide{display:block}
.slick-loading .slick-slide{visibility:hidden}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}




/* Request Form */

.request-form {
	background-color: #1e3a5f;
	padding: 40px 0px;
	color: #fff;
}

.request-form h4 {
	font-size: 22px;
	font-weight: 600;
}

.request-form span {
	font-size: 15px;
	font-weight: 400;
	display: inline-block;
	margin-top: 10px;
}

.request-form a.border-button {
	margin-top: 12px;
	float: right;
}




/* Services */

.services {
	margin-top: 140px;
}

.service-item img {
	width: 100%;
	overflow: hidden;
}

.service-item .down-content {
	background-color: #f7f7f7;
	padding: 30px;
}

.service-item .down-content h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
}

.service-item .down-content p {
	margin-bottom: 20px;
}

.page-link:hover,
.page-link {
	color: #1e3a5f;
}

.btn-primary {
	border-color: #1e3a5f;
	background-color: #1e3a5f;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus{
	opacity: 0.6;
	border-color: #1e3a5f;
	background-color: #1e3a5f;
}


/* Fun Facts */

.fun-facts {
	margin-top: 140px;
	background-image: url(../images/about-fullscreen-image-1-1920x600.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

	
	background-attachment: fixed;
	padding: 140px 0px;
	color: #fff;
	position: relative;
}

.fun-facts .container {
	position: relative;
	z-index: 2;
}

.fun-facts:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 1;
}

.fun-facts span {
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.fun-facts h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
}

.fun-facts em {
	font-style: normal;
	color: #1e3a5f;
}

.fun-facts p {
	color: #fff;
	margin-bottom: 40px;
}

.fun-facts .left-content {
	margin-right: 45px;
}

.count-area-content {
	text-align: center;
	background-color: rgba(250,250,250,0.1);
	padding: 25px 30px 35px 30px;
	margin: 15px 0px;
}

.count-digit {
    margin: 5px 0px;
    color: #1e3a5f;
    font-weight: 700;
    font-size: 36px;
}
.count-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}



/* More Info */

.more-info {
	margin-top: 140px;
}

.more-info .left-image img {
	width: 100%;
	overflow: hidden;
}

.more-info .more-info-content {
	background-color: transparent;
}

.about-info .more-info-content {
	background-color: transparent;
}

.about-info .right-content {
	padding: 0px!important;
	margin-right: 30px;
}

.more-info .right-content {
	padding: 45px 45px 45px 30px;
}

.more-info .right-content span {
	text-transform: uppercase;
	font-size: 15px;
	color: #666;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.more-info .right-content h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
}

.more-info .right-content em {
	font-style: normal;
	color: #1e3a5f;
}

.more-info .right-content p {
	margin-bottom: 30px;
}


/* Testimonials Style */

.about-testimonials {
	margin-top: 0px!important;
}

.testimonials {
	margin-top: 140px;
	background-color: #f7f7f7;
	padding: 140px 0px;
}
.testimonial-item .inner-content {
	text-align: center;
	background-color: #fff;	
	padding: 30px;
	border-radius: 5px;
}
.testimonial-item p {
	font-size: 14px;
	font-weight: 400;
}
.testimonial-item h4 {
	font-size: 19px;
	font-weight: 700;
	color: #1e1e1e;
	letter-spacing: 0.5px;
	margin-bottom: 0px;
}
.testimonial-item span {
	display: inline-block;
	margin-top: 8px;
	font-weight: 600;
	font-size: 14px;
	color: #1e3a5f;
}
.testimonial-item img {
	max-width: 60px;
	border-radius: 50%;
	margin: 25px auto 0px auto;
}




/* Call Back Style */

.callback-services {
	border-top: 1px solid #eee;
	padding-top: 140px;
}

.contact-us {
	background-color: #f7f7f7;
	padding: 140px 0px;
}

.contact-us .contact-form {
	background-color: transparent!important;
	padding: 0!important;
}

.callback-form {
	margin-top: 140px;
}

.callback-form .contact-form {
	background-color: #1e3a5f;
	padding: 60px;
	border-radius: 5px;
	text-align: center;
}

.callback-form .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #6a6a6a;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 35px;
}

.callback-form .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #6a6a6a;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 35px;
}

.callback-form .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #aaa;
}
.callback-form .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
.callback-form .contact-form ::placeholder {
  color: #aaa;
}

.callback-form .contact-form button.border-button {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

.callback-form .contact-form button.border-button:hover {
	background-color: #fff;
	color: #1e3a5f;
}

.contact-us .contact-form button.filled-button {
	background-color: #1e3a5f;
	color: #fff;
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

.contact-us .contact-form button.filled-button:hover {
	background-color: #fff;
	color: #1e3a5f;
}



/* Partners Style */

.contact-partners {
	margin-top: -8px!important;
}

.partners {
	margin-top: 140px;
	background-color: #f7f7f7;
	padding: 60px 0px;
}

.partners .owl-item {
	text-align: center;
	cursor: pointer;
}

.partners .partner-item img {
	max-width: 156px;
	margin: auto;
}



/* Footer Style */

footer {
	background-color: #232323;
	padding: 80px 0px;
	color: #fff;
}

footer h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.25px;
	margin-bottom: 35px;
}
footer p {
	color: #fff;
}

footer ul.social-icons {
	margin-top: 25px;
}

footer ul.social-icons li {
	display: inline-block;
	margin-right: 5px;
}

footer ul.social-icons li:last-child {
	margin-right: 0px;
}

footer ul.social-icons li a {
	width: 34px;
	height: 34px;
	display: inline-block;
	line-height: 34px;
	text-align: center;
	background-color: #fff;
	color: #232323;
	border-radius: 50%;
	transition: all 0.3s;
}

footer ul.social-icons li a:hover {
	background-color: #1e3a5f;
}

footer ul.menu-list li {
	margin-bottom: 13px;
}

footer ul.menu-list li:last-child {
	margin-bottom: 0px;
}

footer ul.menu-list li a {
	font-size: 14px;
	color: #fff;
	transition: all 0.3s;
}

footer ul.menu-list li a:hover {
	color: #1e3a5f;
}

footer .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}

footer .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}

footer .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #aaa;
}
footer .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
footer .contact-form ::placeholder {
  color: #aaa;
}

footer .contact-form button.filled-button {
	background-color: transparent;
	color: #fff;
	background-color: #1e3a5f;
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

footer .contact-form button.filled-button:hover {
	background-color: #fff;
	color: #1e3a5f;
}



/* Sub-footer Style */

.sub-footer {
	background-color: #343434;
	text-align: center;
	padding: 25px 0px;
}

.sub-footer p {
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.5px;
}

.sub-footer a {
	color: #fff;
}


.page-heading {
	text-align: center;
	background-image: url(../images/swiming_pool2.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
	position: relative;
}
.page-heading .container {
	position: relative;
	z-index: 2;
}

.page-heading:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 1;
}

.page-heading h1 {
	text-transform: capitalize;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
}

.page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}


/* team */

.team {
	background-color: #f7f7f7;
	margin-top: 140px;
	margin-bottom: -140px;
	padding: 120px 0px;
}

.team-item img {
	width: 100%;
	overflow: hidden;
}

.team-item .down-content {
	background-color: #fff;
	padding: 30px;
}

.team-item .down-content h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 10px;
}

.team-item .down-content span {
	color: #1e3a5f;
	font-weight: 600;
	font-size: 14px;
	display: block;
	margin-bottom: 15px;
}

.team-item .down-content p {
	margin-bottom: 20px;
}


/* Single Service */

.single-services {
	margin-top: 140px;
}

#tabs ul {
  margin: 0;
  padding: 0;
}
#tabs ul li {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
#tabs ul li:last-child {
  margin-bottom: 0px;
}
#tabs ul li a {
	text-transform: capitalize;
	width: 100%;
	padding: 20px;
	display: inline-block;
	background-color: #1e3a5f;
  	font-size: 18px;
  	color: #121212;
  	letter-spacing: 0.5px;
  	font-weight: 700;
  	transition: all 0.3s;
}
#tabs ul li a i {
	float: right;
	margin-top: 5px;
}
#tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#tabs ul .ui-tabs-active a {
  color: #fff;
}
#tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}
.tabs-content {
	margin-left: 30px;
  text-align: left;
  display: inline-block;
  transition: all 0.3s;
}
.tabs-content img {
	max-width: 100%;
	overflow: hidden;
}
.tabs-content h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
	margin-top: 30px;
}
.tabs-content h4 a {
	color: inherit;	
}
.tabs-content p {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 0px;
}

.dropdown-item.active, 
.dropdown-item:active {
	background-color: #1e3a5f;
}

/* Contact Information */

.contact-information {
	margin-top: 140px;
}

.contact-information .contact-item {
	padding: 60px 30px;
	background-color: #f7f7f7;
	text-align: center;
}

.contact-information .contact-item i {
	color: #1e3a5f;
	font-size: 48px;
	margin-bottom: 40px;
}

.contact-information .contact-item h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
}

.contact-information .contact-item p {
	margin-bottom: 20px;
}

.contact-information .contact-item a {
	font-weight: 600;
	color: #1e3a5f;
	font-size: 15px;
}




/* Responsive Style */
@media (max-width: 768px) {
	.sub-header {
		display: none;
	}
	.Modern-Slider .item h6 {
	  margin-bottom: 15px;
	  font-size: 18px;
	}
	.Modern-Slider .item h4 {
	  margin-bottom: 25px;
	  font-size: 28px;
	  line-height: 36px;
	  letter-spacing: 1px;
	}
	.Modern-Slider .item p {
		max-width: 570px;
		line-height: 25px;
		margin-bottom: 30px;
	}
	.Modern-Slider .NextArrow{
	  right:5px;
	}
	.Modern-Slider .PrevArrow {
	  left:5px;
	}
	.request-form {
		text-align: center;
	}
	.request-form a.border-button {
		float: none;
		margin-top: 30px;
	}
	.services .service-item {
		margin-bottom: 30px;
	}
	.fun-facts .left-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}
	.more-info .right-content  {
		padding: 30px;
	}
	footer {
		padding: 80px 0px 20px 0px;
	}
	footer .footer-item {
		border-bottom: 1px solid #343434;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
	footer .last-item {
		border-bottom: none;
	}
	.about-info .right-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}
	.team .team-item {
		margin-bottom: 30px;
	}
	.tabs-content {
		margin-left: 0px;
		margin-top: 30px;
	}
	.contact-item {
		margin-bottom: 30px;
	}
}

@media (max-width: 992px) {
	.navbar .navbar-brand {
		position: absolute;
		left: 30px;
		top: 10px;
	}
	.navbar .navbar-brand {
		width: auto;
	}
	.navbar:after {
		display: none;
	}
	#navbarResponsive {
	    z-index: 99999;
	    position: absolute;
	    top: 80px;
	    left: 0;
	    width: 100%;
	    text-align: center;
	    background-color: #fff;
	    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
	}
	.navbar .navbar-nav .nav-item {
		border-bottom: 1px solid #eee;
	}
	.navbar .navbar-nav .nav-item:last-child {
		border-bottom: none;
	}
	.navbar .navbar-nav a.nav-link {
		padding: 15px 0px;
		color: #1e1e1e!important;
	}
	.navbar .navbar-nav .nav-link:hover,
	.navbar .navbar-nav .active>.nav-link,
	.navbar .navbar-nav .nav-link.active,
	.navbar .navbar-nav .nav-link.show,
	.navbar .navbar-nav .show>.nav-link {
		color: #1e3a5f!important;
		border-bottom: none!important;
	}
}

h5 a { color: #1e3a5f; } 
h5 a:hover { color: inherit; } 

/* ==========================
   Luxury Premium Theme Layer
   ========================== */
:root {
	--lux-bg: #f7f3eb;
	--lux-surface: #ffffff;
	--lux-surface-soft: #fcf8f1;
	--lux-text: #22252c;
	--lux-muted: #636b78;
	--lux-gold: #be9653;
	--lux-gold-soft: #e8d0a2;
	--lux-emerald: #2f7a66;
	--lux-line: rgba(190, 150, 83, 0.33);
	--lux-shadow: 0 16px 36px rgba(25, 23, 20, 0.12);
}

body {
	background: linear-gradient(180deg, #faf7f0 0%, #f7f3eb 45%, #f3eee5 100%);
	color: var(--lux-text);
}

p {
	color: var(--lux-muted);
}

.section-heading h2,
.service-item .down-content h4,
.more-info .right-content h2,
.fun-facts h2 {
	color: var(--lux-text);
}

.section-heading em,
.fun-facts em,
.more-info .right-content em {
	color: var(--lux-gold);
}

.sub-header {
	background: linear-gradient(90deg, #f2ece0, #faf6ef 50%, #f2ece0);
	border-bottom: 1px solid var(--lux-line);
}

.sub-header ul.left-info li a,
.sub-header ul.right-icons li a {
	color: #2b2b2b;
}

header {
	backdrop-filter: blur(4px);
}

.background-header {
	background: rgba(255, 255, 255, 0.95) !important;
	border-bottom: 1px solid var(--lux-line);
	box-shadow: 0 8px 24px rgba(17, 17, 17, 0.1);
}

.background-header .navbar-brand h2 .western,
.background-header .navbar-nav a.nav-link {
	color: var(--lux-text) !important;
}

.navbar .navbar-brand h2 .hills,
.background-header .navbar-brand h2 .hills {
	color: var(--lux-gold) !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active > .nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show > .nav-link,
.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active > .nav-link,
.background-header .navbar-nav .nav-link.active,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show > .nav-link {
	color: var(--lux-gold) !important;
	border-bottom-color: var(--lux-gold);
}

.img-fill:before {
	background: linear-gradient(
		109deg,
		rgba(25, 20, 12, 0.52) 0%,
		rgba(24, 20, 15, 0.3) 38%,
		rgba(35, 28, 16, 0.52) 100%
	);
}

.Modern-Slider .item h6 {
	color: var(--lux-gold-soft);
}

.Modern-Slider .item h4 {
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.Modern-Slider .item p {
	color: #f6f1e9;
}

a.filled-button,
.btn-primary,
.contact-us .contact-form button.filled-button,
footer .contact-form button.filled-button {
	background: linear-gradient(135deg, var(--lux-gold) 0%, #b88d3f 100%);
	border: none;
	color: #121212;
	box-shadow: 0 8px 20px rgba(183, 141, 63, 0.35);
}

a.filled-button:hover,
.btn-primary:hover,
.contact-us .contact-form button.filled-button:hover,
footer .contact-form button.filled-button:hover {
	background: linear-gradient(135deg, #f3e3bb 0%, var(--lux-gold) 100%);
	color: #101216;
	transform: translateY(-2px);
}

a.border-button,
.callback-form .contact-form button.border-button {
	border-color: var(--lux-gold-soft);
	color: var(--lux-gold-soft);
}

a.border-button:hover,
.callback-form .contact-form button.border-button:hover {
	background: var(--lux-gold-soft);
	color: #121212;
}

.request-form {
	background: linear-gradient(100deg, #ecd8b4 0%, #d9c093 55%, #c9ae7b 100%);
	color: #2a251c;
}

.request-form h4,
.request-form span {
	color: #2a251c;
}

.services,
.more-info,
.testimonials,
.contact-us,
.team,
.partners {
	position: relative;
}

.service-item {
	background: transparent;
	border-radius: 16px;
	overflow: hidden;
	transform: translateY(0);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--lux-shadow);
}

.service-item .down-content,
.more-info .more-info-content,
.contact-information .contact-item,
.team-item .down-content,
.testimonial-item .inner-content {
	background: transparent;
	border: 1px solid rgba(215, 181, 109, 0.2);
}

.fun-facts:before {
	background: linear-gradient(
		135deg,
		rgba(32, 24, 15, 0.74) 0%,
		rgba(46, 36, 23, 0.6) 45%,
		rgba(40, 77, 65, 0.52) 100%
	);
}

footer {
	background: #1f222a;
	border-top: 1px solid var(--lux-line);
}

.sub-footer {
	background: #171a21;
	border-top: 1px solid rgba(215, 181, 109, 0.18);
}

footer ul.menu-list li a:hover,
footer ul.social-icons li a:hover,
.page-link:hover,
.page-link,
h5 a {
	color: var(--lux-gold);
}

.contact-information .contact-item i,
.count-digit {
	color: var(--lux-gold);
}

.own-badge {
	background: linear-gradient(135deg, #2f7a66, #215a4b);
	border-color: rgba(255, 255, 255, 0.45);
	box-shadow: 0 8px 18px rgba(24, 88, 72, 0.25);
}

.Modern-Slider .item.slick-active .text-content {
	animation: luxuryReveal 900ms ease 120ms both;
}

@keyframes luxuryReveal {
	0% {
		opacity: 0;
		transform: translate(-50%, -44%);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

@media (max-width: 992px) {
	#navbarResponsive {
		background: #ffffff;
	}

	.navbar .navbar-nav .nav-item {
		border-bottom-color: rgba(0, 0, 0, 0.08);
	}

	.navbar .navbar-nav a.nav-link {
		color: var(--lux-text) !important;
	}
}

/* =================================
   Ultra Premium Unified Finishing
   Applies across all pages
   ================================= */
:root {
	--lux-ink: #1f2430;
	--lux-cream: #f8f3e9;
	--lux-cream-deep: #efe5d3;
}

body {
	background: radial-gradient(circle at 20% 0%, #fffdf8 0%, #f8f3e9 35%, #f5efe4 100%);
	color: var(--lux-ink);
}

.section-heading h2 {
	font-weight: 700;
	letter-spacing: 0.3px;
}

.section-heading span {
	color: #8b7760;
	letter-spacing: 1.4px;
}

header .navbar {
	transition: all 0.35s ease;
}

.navbar .navbar-brand h2 {
	letter-spacing: 0.7px;
}

.navbar .navbar-nav a.nav-link {
	font-weight: 500;
}

.background-header .navbar {
	padding-top: 12px;
	padding-bottom: 12px;
}

.background-header {
	background: rgba(255, 252, 246, 0.92) !important;
	box-shadow: 0 10px 28px rgba(31, 36, 48, 0.12);
}

.Modern-Slider .text-content {
	max-width: 860px;
}

.Modern-Slider .item h4 {
	font-weight: 800;
	letter-spacing: 1.6px;
}

.Modern-Slider .item p {
	font-size: 16px;
	line-height: 31px;
}

.services:nth-of-type(odd),
.more-info,
.testimonials,
.team,
.contact-us,
.contact-information {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(248, 243, 233, 0.25) 100%);
	border-top: 1px solid rgba(190, 150, 83, 0.1);
	border-bottom: 1px solid rgba(190, 150, 83, 0.1);
}

.service-item,
.contact-information .contact-item,
.team-item .down-content,
.testimonial-item .inner-content,
.more-info .more-info-content {
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(25, 24, 20, 0.08);
}

.service-item img,
.team-item img,
.tabs-content img,
.left-image img {
	transition: transform 0.8s ease;
}

.service-item:hover img,
.team-item:hover img {
	transform: scale(1.04);
}

a.filled-button,
a.border-button,
.btn-primary,
.callback-form .contact-form button.border-button,
.contact-us .contact-form button.filled-button {
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: 0.6px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

a.filled-button:hover,
a.border-button:hover,
.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(176, 130, 52, 0.22);
}

.request-form {
	position: relative;
	overflow: hidden;
}

.request-form:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 45%);
	pointer-events: none;
}

.fun-facts {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

footer h4 {
	color: var(--lux-cream-deep);
}

footer ul.menu-list li a,
footer p,
.sub-footer p {
	color: #d7d2c7;
}

footer ul.menu-list li a:hover {
	color: #f0d8a7;
}

.sub-footer {
	background-image: linear-gradient(90deg, #151922, #1a202b 50%, #151922);
}

@keyframes softFloat {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-4px); }
	100% { transform: translateY(0px); }
}

.Modern-Slider .item.slick-active a.filled-button {
	animation: softFloat 2.2s ease-in-out 1.3s infinite;
}

@media (max-width: 768px) {
	.section-heading h2 {
		font-size: 30px;
	}

	.Modern-Slider .item p {
		font-size: 15px;
		line-height: 27px;
	}
}

/* =================================
   Premium Theme V2 (Clean Royal)
   ================================= */
:root {
	--lux-bg: #f4f6fa;
	--lux-surface: #ffffff;
	--lux-surface-soft: #f8faff;
	--lux-text: #1a2333;
	--lux-muted: #5f6e83;
	--lux-gold: #c89b54;
	--lux-gold-soft: #e7cc9f;
	--lux-emerald: #0e5a65;
	--lux-line: rgba(200, 155, 84, 0.28);
	--lux-shadow: 0 14px 34px rgba(17, 28, 44, 0.12);
}

body {
	background: linear-gradient(180deg, #f9fbff 0%, #f4f6fa 45%, #f7f9fc 100%);
	color: var(--lux-text);
}

p {
	color: var(--lux-muted);
}

.sub-header {
	background: linear-gradient(90deg, #12213a, #1b2e4d 50%, #12213a);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.sub-header ul.left-info li a,
.sub-header ul.right-icons li a {
	color: #f5f7fc;
}

header {
	backdrop-filter: blur(6px);
}

.background-header {
	background: rgba(255, 255, 255, 0.96) !important;
	border-bottom: 1px solid var(--lux-line);
	box-shadow: 0 10px 26px rgba(14, 23, 38, 0.12);
}

.background-header .navbar-brand h2 .western,
.background-header .navbar-nav a.nav-link {
	color: #1a2333 !important;
}

.navbar .navbar-brand h2 .hills,
.background-header .navbar-brand h2 .hills {
	color: var(--lux-gold) !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active > .nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show > .nav-link,
.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active > .nav-link,
.background-header .navbar-nav .nav-link.active,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show > .nav-link {
	color: var(--lux-gold) !important;
	border-bottom-color: var(--lux-gold);
}

.img-fill:before {
	background: linear-gradient(114deg, rgba(8, 16, 28, 0.72) 0%, rgba(9, 17, 31, 0.48) 40%, rgba(13, 18, 28, 0.66) 100%);
}

.Modern-Slider .item h6 {
	color: #f3ddb9;
}

.Modern-Slider .item h4 {
	color: #ffffff;
	text-shadow: 0 8px 24px rgba(3, 8, 16, 0.56);
}

.Modern-Slider .item p {
	color: #eaf0f8;
}

.request-form {
	background: linear-gradient(100deg, #13233e 0%, #1b3257 55%, #0e5a65 100%);
}

.request-form h4,
.request-form span {
	color: #f4f7fe;
}

.section-heading h2,
.service-item .down-content h4,
.more-info .right-content h2 {
	color: #1a2333;
}

.section-heading em,
.more-info .right-content em,
.fun-facts em {
	color: var(--lux-gold);
}

.service-item,
.contact-information .contact-item,
.team-item .down-content,
.testimonial-item .inner-content,
.more-info .more-info-content {
	background: linear-gradient(145deg, var(--lux-surface) 0%, var(--lux-surface-soft) 100%);
	border: 1px solid rgba(26, 35, 51, 0.06);
	border-radius: 16px;
	box-shadow: var(--lux-shadow);
}

.service-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 38px rgba(14, 24, 40, 0.16);
}

a.filled-button,
.btn-primary,
.contact-us .contact-form button.filled-button,
footer .contact-form button.filled-button {
	background: linear-gradient(135deg, #d2aa6a 0%, #b5843d 100%);
	color: #151515;
	border: none;
	box-shadow: 0 10px 24px rgba(181, 132, 61, 0.26);
}

a.filled-button:hover,
.btn-primary:hover,
.contact-us .contact-form button.filled-button:hover,
footer .contact-form button.filled-button:hover {
	background: linear-gradient(135deg, #f1dfbf 0%, #d2aa6a 100%);
	color: #111;
	transform: translateY(-2px);
}

a.border-button,
.callback-form .contact-form button.border-button {
	border-color: #f3ddb7;
	color: #f3ddb7;
}

a.border-button:hover,
.callback-form .contact-form button.border-button:hover {
	background: #f3ddb7;
	color: #1d1d1d;
}

.fun-facts:before {
	background: linear-gradient(135deg, rgba(7, 13, 24, 0.82) 0%, rgba(12, 22, 39, 0.74) 48%, rgba(12, 62, 70, 0.62) 100%);
}

footer {
	background: #111b2d;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

footer h4,
footer p,
footer ul.menu-list li a {
	color: #dbe4f2;
}

footer ul.menu-list li a:hover {
	color: #f1d29a;
}

.sub-footer {
	background: #0c1424;
}

.sub-footer p {
	color: #c8d4e8;
}

@media (max-width: 992px) {
	#navbarResponsive {
		background: #ffffff;
	}

	.navbar .navbar-nav .nav-item {
		border-bottom-color: rgba(17, 33, 55, 0.09);
	}

	.navbar .navbar-nav a.nav-link {
		color: #1a2333 !important;
	}
}

/* =================================
   Unified White Theme (User Request)
   ================================= */
body {
	background: #ffffff !important;
	color: #121212;
}

p {
	color: #3a3a3a;
}

.sub-header {
	background: #ffffff !important;
	border-bottom: 1px solid #e7e7e7;
}

.sub-header ul.left-info li a,
.sub-header ul.right-icons li a {
	color: #1b1b1b !important;
}

header,
.background-header {
	background: #ffffff !important;
	border-bottom: 1px solid #ececec;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

header {
	height: 96px !important;
}

header .navbar,
.background-header .navbar {
	min-height: 96px;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	display: flex;
	align-items: center;
}

.navbar .navbar-brand {
	margin-top: 0;
	padding: 0;
	display: flex;
	align-items: center;
	height: 96px;
}

.site-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #111111 !important;
	min-height: 96px;
}

.site-logo-link img {
	width: 200px;
	height: 86px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.site-logo-link .brand-text {
	display: none;
}

.navbar .navbar-brand h2,
.navbar .navbar-brand h2 .western,
.background-header .navbar-brand h2 .western {
	color: #101010 !important;
}

.navbar .navbar-brand h2 .hills,
.background-header .navbar-brand h2 .hills {
	color: #c89b54 !important;
}

.navbar .navbar-nav a.nav-link,
.background-header .navbar-nav a.nav-link {
	color: #111111 !important;
	font-weight: 500;
	height: 96px;
	display: inline-flex;
	align-items: center;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	line-height: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active > .nav-link,
.navbar .navbar-nav .nav-link.active,
.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active > .nav-link,
.background-header .navbar-nav .nav-link.active {
	color: #c89b54 !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

.service-item img,
.gallery-item img,
.amenity-card-image,
.property-img,
.wc-image {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.service-item img,
.gallery-item img,
.property-img,
.wc-image {
	height: 280px;
}

@media (max-width: 767px) {
	header {
		height: 84px !important;
	}

	header .navbar,
	.background-header .navbar {
		min-height: 84px;
	}

	.navbar .navbar-brand,
	.site-logo-link {
		min-height: 84px;
		height: 84px;
	}

	.site-logo-link .brand-text {
		display: none;
	}

	.site-logo-link img {
		width: 158px;
		height: 68px;
	}

	.service-item img,
	.gallery-item img,
	.property-img,
	.wc-image,
	.amenity-card-image {
		height: 210px;
	}
}

/* Final premium footer + bottom bar theme */
footer {
	background: linear-gradient(125deg, #0b0f18 0%, #131a27 45%, #1d2430 100%) !important;
	border-top: 1px solid rgba(200, 155, 84, 0.4);
	padding-top: 90px;
	padding-bottom: 70px;
}

footer h4 {
	font-weight: 700;
	letter-spacing: 0.4px;
	color: #f1d29a !important;
}

footer p,
footer ul.menu-list li a {
	color: #e9eef7 !important;
}

footer ul.menu-list li a:hover {
	color: #ffd48a !important;
}

footer .footer-item {
	padding-right: 8px;
}

footer ul.menu-list li {
	margin-bottom: 12px;
}

.sub-footer {
	background: #080d16 !important;
	border-top: 1px solid rgba(200, 155, 84, 0.28);
	padding: 20px 0;
}

.sub-footer p {
	color: #cfd8e7 !important;
	letter-spacing: 0.7px;
}

.request-form {
	background: linear-gradient(96deg, #172033 0%, #21385f 56%, #154351 100%) !important;
}