/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,400,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Baloo+Chettan&display=swap');

/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
     box-sizing: border-box !important;
}

.container {
     max-width: 1170px;
}

html {
     scroll-behavior: smooth;
     overflow-x: clip;}

body {
     color: #666666;
     font-size: 14px;
     font-family: 'Poppins', sans-serif;
     line-height: 1.80857;
     font-weight: normal;
     overflow-x: clip;
}

a {
     color: #1f1f1f;
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     letter-spacing: 0;
     font-weight: normal;
     position: relative;
     padding: 0 0 10px 0;
     font-weight: normal;
     line-height: normal;
     color: #111111;
     margin: 0
}

h1 {
     font-size: 24px;
}

h2 {
     font-size: 22px;
}

h3 {
     font-size: 18px;
}

h4 {
     font-size: 16px
}

h5 {
     font-size: 14px
}

h6 {
     font-size: 13px
}

*,
*::after,
*::before {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
     color: #212121;
     text-decoration: none!important;
     opacity: 1
}

button:focus {
     outline: none;
}

ul,
li,
ol {
     margin: 0px;
     padding: 0px;
     list-style: none;
}

p {
     margin: 0px;
     font-weight: 500;
     font-size: 15px;
     line-height: 24px;
}

a {
     color: #222222;
     text-decoration: none;
     outline: none !important;
}

a,
.btn {
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

img {
     max-width: 100%;
     height: auto;
}
.logo img {
     width: 150px; /* Default width */
     height: auto; /* Maintain aspect ratio */
     max-height: 70px; /* Ensure it doesn't exceed this height */
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .logo img {
         width: 120px;  /* Smaller width on tablets */
         max-height: 40px;
     }
 }

 @media (max-width: 480px) {
     .logo img {
         width: 100px;  /* Smaller width on mobile */
         max-height: 35px;
     }
 }

 
 :focus {
     outline: 0;
}

.btn-custom {
     margin-top: 20px;
     background-color: transparent !important;
     border: 2px solid #ddd;
     padding: 12px 40px;
     font-size: 16px;
}

.lead {
     font-size: 18px;
     line-height: 30px;
     color: #767676;
     margin: 0;
     padding: 0;
}

.form-control:focus {
     border-color: #ffffff !important;
     box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.navbar-form input {
     border: none !important;
}

.badge {
     font-weight: 500;
}

blockquote {
     margin: 20px 0 20px;
     padding: 30px;
}

button {
     border: 0;
     margin: 0;
     padding: 0;
     cursor: pointer;
}

.full {
     float: left;
     width: 100%;
}

.full {
     width: 100%;
     float: left;
     margin: 0;
     padding: 0;
}


/**-- heading section --**/



/*---------------------------- preloader area ----------------------------*/


.loader_bg {
     position: fixed;
     z-index: 9999999;
     background: #fff;
     width: 100%;
     height: 100%;
}

.loader {
     height: 100%;
     width: 100%;
     position: absolute;
     left: 0;
     top: 0;
     display: flex;
     justify-content: center;
     align-items: center;
}

.loader img {
     width: 280px;
}
.banner-img{
     object-fit: cover;
     width: 100%;
}
/* carousel image  */
.img-carousel {
     /* background: url('your-image.jpg') no-repeat center center; */
     background-size: cover;
     width: 100%;
     height: 70vh; /* Full viewport height */
 }
 /* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
     .img-carousel {
         height: 80vh; /* Reduce height slightly */
         background-position: center top;
     }
 }
 
 /* Mobile Devices (480px - 767px) */
 @media (max-width: 767px) {
     .img-carousel {
         height: 60vh; /* Reduce height further */
         /* width: auto; */
         background-size: contain; /* Ensures full image is visible */
         background-position: center top;
     }
 }
 
 /* Small Mobile Screens (Below 480px) */
 @media (max-width: 480px) {
     .img-carousel {
         height: 60vh; /* Further reduce height */
         /* width: auto; */
         background-size: cover; /* Adjust fit */
         background-position: center;
     }
 }

 #header {
     position: sticky;
     top: -80px; /* Initially hidden above */
     left: 0;
     width: 100%;
     background:#b28b2d;; 
     transition: top 0.4s ease-in-out;
     z-index: 1000;
     /* padding: 10px  0; */
  }
  
  #header.active {
     top: 0; /* Slide down */
  }
  



/*-- header area --*/


/*--------------------------------------------------------------------- top banner area ---------------------------------------------------------------------*/


/*-- navigation--*/

.navigation.navbar {
     float: right;
     padding-top: 14px !important;
     padding: 0;
}

.navigation.navbar-dark .navbar-nav .nav-link {
     padding: 7px 0px 27px 0px;
     margin: 0 22px;
     color: #010101;
     font-size: 16px;
     line-height: 20px;
     font-weight: 500;
     text-transform: uppercase;
     /* border-bottom: #fff solid 3px; */
     /* position: sticky;
     width: 100%;
     z-index: 1000; */
}

.navigation.navbar-dark .navbar-nav .nav-link:focus,
.navigation.navbar-dark .navbar-nav .nav-link:hover {
     color: #fe0000;
     /* border-bottom: #fe0000 solid 3px; */
}

.navigation.navbar-dark .navbar-nav .active>.nav-link,
.navigation.navbar-dark .navbar-nav .nav-link.active,
.navigation.navbar-dark .navbar-nav .nav-link.show,
.navigation.navbar-dark .navbar-nav .show>.nav-link {
     color: #fe0000;
     /* border-bottom: #fe0000 solid 3px; */
}

.navbar-expand-md .navbar-nav {
     padding-right: 10px;
}

.header {
     width: 100%;
     height: 86px;
     padding: 15px 0px 15px 0px;
     background: #ffffffc5;
}


/** banner section **/

.banner_main {
     position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden;
}

.banner .carousel-indicators li {
     width: 20px;
     height: 20px;
     border-radius: 30px;
     background: #000;
}

.banner .carousel-indicators .active {
     background-color: #fe0000;
}

.booking_ocline {
     position: absolute;
     width: 100%;
     top: 50%;
     transform: translateY(-50%);
}

/* .head-header{
     text-align: center;
     justify-content: center;
     color: #ffffff;
     margin-top: 20px;
     margin-right: 60px;
     font-size: 40px;
     font-weight: bold;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.para-header{
     text-align: center;
     justify-content: center;
     color: #ffffff;
     margin-top: -100px;
     margin-right: -20px;
     font-size: 20px;
     font-weight: bold;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} */


.banner-text {
     position: absolute;
     top: 20%;  /* Move it down by 50% */
     left: 60%; /* Move it right by 50% */
     transform: translate(-50%, -50%); /* Center it exactly */
     text-align: center;
     /* width: 100%;  */

 }
 
 /* Styling for the heading */
 .head-header {
     color: #ffffff;
     font-size: 40px;
     font-weight: bold;
    text-transform: uppercase;
     font-family: 'Playfair Display', serif;
     margin: 0;
 }
 
 /* Styling for the paragraph */
 .para-header {
     color: #ffffff;
     font-size: 20px;
     font-weight: bold;
     text-transform: uppercase;
     font-family: 'Playfair Display', serif;   
     /* background-color: red; */
     /* margin: 5px 0 0 0; */
     padding-left: 59px;
 }



@media (max-width: 768px) {
     .head-header {
         /* height: 300px;  */
         display: none;
     }
 }
 
 @media (max-width: 480px) {
     .head-header {
         /* height: 200px; */
         display: none;
     }
 }

 @media (max-width: 768px) {
     .para-header {
         /* height: 300px;  */
         display: none;
     }
 }
 
 @media (max-width: 480px) {
     .para-header {
         /* height: 200px; */
         display: none;
     }
 }
 @media (max-width: 992px) {
     .head-header {
          display: none; 
     }
}
@media (max-width: 992px) {
     .para-header {
          display: none; 
     }
}

.book_room {
     background-color: #000000c7;
     padding: 30px 35px;
     /* border-left: #ff0909 solid 5px; */
}

.book_room h1 {
     font-weight: 500;
     font-size: 30px;
     line-height: 30px;
     color: #fff;
     padding-bottom: 20px;
     text-transform: uppercase;
     text-align: center;
}

.book_now span {
     display: block;
     color: #fff;
     font-size: 18px;
     padding-bottom: 5px;
}

.book_now .online_book {
     width: 100%;
     height: 50px;
     border: #fff solid 1px;
     background-color: transparent;
     color: #fff;
     padding: 0 10px;
     /* padding-right: 61px; */
     margin-bottom: 25px;
     position: relative;
}

.date_cua {
     position: absolute;
     width: 29px;
     height: 29px;
     top: 48px;
     background-repeat: no-repeat;
     right: 30px;
}

.book_btn {
     background-color: #fe0000;
     max-width: 189px;
     width: 100%;
     margin: 0 auto;
     padding: 10px 0;
     border-radius: 50px;
     color: #fff;
     font-size: 20px;
     transition: ease-in 0.5s;
     display: inline-block;
}

.book_btn:hover {
     background-color: #fff;
     color: #fe0000;
     transition: ease-in 0.5s;
}

.carousel-control-next,
.carousel-control-prev {
     display: none;
}

.carousel-indicators {
     right: inherit;
     bottom: 53px;
     margin-left: 9%;
}


/** end banner section **/

.titlepage {
     text-align: center;
     padding-bottom: 40px;
}

.titlepage h2 {
     font-size: 40px;
     color: #121212;
     line-height: 45px;
     font-weight: bold;
     text-transform: uppercase;
     padding: 0;
}


.titlepage h2::before {
     position: absolute;
     content: "";
     background-color: #ff0909;
     width: 20px;
     height: 4px;
     transform: rotate(-36deg);
}

.titlepage h2::after {
     position: absolute;
     content: "";
     background-color: #ff0909;
     width: 20px;
     height: 4px;
     transform: rotate(-36deg);
     bottom: 10px;
}



.d_flex {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
}

.read_more {
     font-size: 17px;
     background-color: red;
     color: #fff;
     padding: 8px 0px;
     width: 100%;
     max-width: 144px;
     text-align: center;
     display: inline-block;
     transition: ease-in all 0.5s;
     font-weight: 500;
     border-radius: 30px;
}

.read_more:hover {
     background: #fff;
     color: red;
     transition: ease-in all 0.5s;
}

/** about section **/

.about {
     background-color: #fff;
     /* padding-top: 85px; */

}

.aboutbg{
     /* background-color: rgba(235, 237, 251, 0.318); */
     border-radius: 10px;
   
}

.about .titlepage {
     text-align: left;
     padding-bottom: 0;
     padding-top: 10px;
     width: 100%;
     float: right;
}

.about .titlepage h2 {
     margin-bottom: 35px;
}

.about .titlepage p {
     font-weight: 400;
     font-size: 17px;
     line-height: 28px;
     padding-bottom: 35px;
}

.about_img {
     /* max-width: 100%;  */
     display: flex;
     height: 100%;
     /* padding: 30px; */
     justify-content: center;
     align-items: center;
     overflow: hidden; /* Prevents overflow on hover */
 }
 
 .about_img figure {
     margin: 0;
     /* max-width: 100%;
     width: 100%; */

 }
 
 .about_img figure img {
     max-width: 100%; /* Ensures the image is responsive */
     height: auto; /* Maintains aspect ratio */
     object-fit: contain; /* Prevents cropping */
     transition: transform 0.5s ease-in-out;
 }
 
 .about_img figure img:hover {
     transform: scale(1.1); /* Slight zoom effect on hover */
 }

 
/** end about section **/

/** our_room section **/

.our_room {
     background-color: #f4f5f7;
     padding: 60px 0 30px 0;
     margin-top: 90px;
}

.our_room .titlepage {
     text-align: center;
}

.our_room .titlepage p {
     color: #121212;
     font-size: 17px;
     margin-top: 20px;
}

.our_room .room {
     text-align: center;
     background-color: #fff;
     margin-bottom: 30px;
     transition: ease-in all 0.5s;
}

.our_room .room .room_img {
     overflow: hidden;
}

.our_room .room .room_img figure {
     margin: 0;
}

.our_room .room .room_img figure img {
     width: 100%;
     transition: all .5s;
}

.our_room .room .room_img figure img:hover {
     transform: scale(1.2);
}

.our_room .room .bed_room {
     padding: 33px 30px;
}

.our_room .room .bed_room h3 {
     color: #121212;
     font-size: 25px;
     line-height: 20px;
     font-weight: 500;
     transition: ease-in all 0.5s;
     margin: auto;
}

#serv_hover:hover.room {
     cursor: pointer;
     box-shadow: 0px 0px 30px rgba(255, 9, 9, 0.15);
     transition: ease-in all 0.5s;
}


/** end our_room section **/


/** gallery  section **/

.gallery {
     padding-top: 60px;
}

.gallery .titlepage {
     text-align: center;
}

.gallery .gallery_img {
     overflow: hidden;
     margin-bottom: 30px;
}

.gallery .gallery_img figure {
     margin: 0;
}

.gallery .gallery_img figure img {
     width: 100%;
     transition: all .5s;
}

.gallery .gallery_img figure img:hover {
     transform: scale(1.2);
}


/** end gallery  section **/


/** blog section **/

.blog {
     background: url(../images/blog_bg.jpg);
     background-repeat: no-repeat;
     background-size: 100% 100%;
     padding: 60px 0 30px 0;
     margin-top: 60px;
}

.blog .titlepage {
     text-align: center;
}

.blog .titlepage h2 {
     color: #fff;
}

.blog .titlepage p {
     color: #fff;
     font-size: 17px;
     margin-top: 20px;
}

.blog .blog_box {
     text-align: left;
     background-color: #fff;
     margin-bottom: 30px;
     transition: ease-in all 0.5s;
}

.blog .blog_box .blog_img {
     overflow: hidden;
}

.blog .blog_box .blog_img figure {
     margin: 0;
}

.blog .blog_box .blog_img figure img {
     width: 100%;
     transition: all .5s;
}

.blog .blog_box .blog_img figure img:hover {
     transform: scale(1.2);
}

.blog .blog_box .blog_room {
     padding: 33px 30px;
     text-align: left;
}

.blog .blog_box .blog_room h3 {
     color: #121212;
     font-size: 25px;
     line-height: 20px;
     font-weight: 500;
     padding-bottom: 5px;
     transition: ease-in all 0.5s;
     margin: auto;
}

.blog .blog_box .blog_room span {
     font-size: 15px;
     color: #ff0909;
     font-weight: bold;
     margin-bottom: 10px;
     display: block;
}

.blog .blog_box .blog_room p {
     font-size: 14px;
     line-height: 20px;
}


/** end blog section **/


/** contact section **/

.contact {
     background: #fff;
     margin-top: 90px;
}

.main_form .contactus {
     border: #fff solid 1px;
     padding: 0 15px;
     margin-bottom: 25px;
     width: 100%;
     height: 58px;
     background: #fff;
     color: #000000;
     font-size: 18px;
     font-weight: normal;
     box-shadow: 2px 0px 6px rgba(255, 9, 9, 0.20);
}

.main_form .textarea {
     border: #fff solid 1px;
     margin-bottom: 25px;
     width: 100%;
     background: #fff;
     color: #000000;
     font-size: 18px;
     font-weight: normal;
     padding: 12px 15px 0 15px;
     box-shadow: 2px 0px 6px rgba(255, 9, 9, 0.20);
     height: 150px;
}

.main_form .send_btn {
     font-size: 22px;
     transition: ease-in all 0.5s;
     background-color: #000000;
     text-transform: uppercase;
     color: #fff;
     padding: 10px 0px;
     max-width: 193px;
     width: 100%;
     display: block;
     margin-top: 10px !important;
     font-weight: 500;
     border-radius: 50px;
}

.main_form .send_btn:hover {
     background-color: #ff0909;
     transition: ease-in all 0.5s;
     color: #fff;
}

#request *::placeholder {
     color: #000000;
     opacity: 1;
}

.map figure {
     margin: 0;
}

.map figure img {
     width: 100%;
}


/** end contact section **/


/** footer **/

.footer {
     background: #0f1521;
     margin-top: 5px;
     padding-top: 60px;
     text-align: center;
}

.footer h3 {
     font-weight: 500;
     font-size: 25px;
     line-height: 24px;
     text-align: left;
     color: #fff;
     margin-bottom: 10px;
     border-bottom: #ff0909 solid 3px;
     padding-bottom: 3px;
     display: table;
}

ul.conta li {
     color: #fff;
     text-align: left;
     padding-bottom: 20px;
     font-size: 16px;
}

ul.conta li i {
     padding-right: 15px;
     text-align: center;
     font-size: 20px;
}

ul.conta li a {
     color: #fff;
}

ul.link_menu li {
     display: block;
     text-align: left;
}

ul.link_menu li.active a {
     color: #ff0909;
}

ul.link_menu li a {
     color: #fff;
     font-size: 17px;
     line-height: 28px;
     display: block;
     width: -moz-max-content;
}

ul.link_menu li a:hover {
     color: #ff0909;
}

.bottom_form {
     display: flex;
     flex-wrap: wrap;
     margin-top: 10px;
     object-fit: contain;
     /* height: 50px; */
     width: auto;
    
}

.bottom_form h3 {
     font-weight: 600;
     font-size: 20px;
     line-height: 25px;
     text-align: left;
     color: #fff;
     padding-top: 12px;
     margin-right: 93px;
     text-transform: uppercase;
     border: inherit;
}

.bottom_form .enter {
     border: inherit;
     padding: 0px 19px;
     width: 100%;
     height: 45px;
     background: #fffffff2;
     color: #ccc8c8;
     font-size: 17px;
     font-weight: 300;
     float: left;
     margin-bottom: 20px;
}

.sub_btn {
     font-size: 17px;
     transition: ease-in all 0.5s;
     background-color: #fff;
     color: #ff0909;
     padding: 8px 0px;
     max-width: 147px;
     width: 100%;
     font-weight: 500;
     text-transform: uppercase;
     height: 47px;
}

.sub_btn:hover {
     background-color: #ff0909;
     transition: ease-in all 0.5s;
     color: #fff;
}

ul.social_icon {
     padding-top: 24px;
     width: 100%;
     float: left;
     text-align: left;
}

ul.social_icon li {
     display: inline-block;
}

ul.social_icon li a {
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 27px;
     border-radius: 30px;
     margin: 0 9px;
     color: #fff;
}

ul.social_icon li a:hover {
     color: #ff0909;
}

.copyright {
     margin-top: 60px;
     padding-bottom: 20px;
     background-color: #fff;
     /* border: #ff0909 solid 3px; */
     border-right: inherit;
     border-left: inherit;
}

.copyright p {
     color: #000;
     font-size: 18px;
     line-height: 22px;
     text-align: center;
     border-top: #a3aec6 solid 1px;
     padding-top: 25px;
     font-weight: normal;
}

/* .copyright a {
     color: #000;
} */

/* .copyright a:hover {
     color: #ff0909;
} */


/** end footer **/


/**  inner page css **/
.back_re {
     background-color: #0f1521;
}
.back_re .title {
     text-align: center;
}
.back_re .title h2 {
color:#fff;
font-size: 40px;
padding: 40px 0;
font-weight: 600;
text-transform: uppercase;
line-height: 35px;
}
.margin_0 {
     margin:0 !important;
}


.inner_page .gallery {
     padding-top: 90px;
}
.inner_page .blog {
     margin-top: 90px;
}



/* About section  */
 
 /* Section Titles */
 .section-title {
     font-size: 2rem;
     font-weight: bold;
     color: #0f1521; /* Warm brown tone */
     margin-bottom: 15px;
 }
 
 /* Section Text */
 .section-text {
     font-size: 1.1rem;
     line-height: 1.6;
 }


/* Facilities Section */
.facilities {
            padding: 50px 0;
            background: #fff;
        }

        .facilities h2 {
            text-align: center;
            font-size: 32px;
            font-weight: bold;
            color:#0f1521;
     /* background: #c1c3c9; */
            margin-bottom: 30px;
        }
        .facilities h4{
          text-align: center;
          padding: 8px;
          border-radius: 10px;
          background: rgb(187, 185, 185);
          color: #0f1521;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s;
          margin-bottom: 8px;
        }
        .facility-item {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: #464c5b;
            /* background: #4e525e; */
            color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .facility-item:hover {
            transform: scale(1.05);
        }

/* 🌐 Responsive Design */
@media (max-width: 768px) {
     .facility-item {
         margin: 10px auto;  /* Center align and add spacing */
         padding: 15px;
     }
 
     .facility-item h4 {
         font-size: 16px;
         padding: 8px;
     }
 
     .facility-item p {
         font-size: 14px;
     }
 }
 
 @media (max-width: 480px) {
     .facility-item {
         padding: 10px;
         margin-bottom: 15px; /* Reduce spacing for smaller screens */
     }
 
     .facility-item h4 {
         font-size: 14px;
     }
 
     .facility-item p {
         font-size: 12px;
     }
 }



    /* Location Section */
    .location {
     background: #c1c3c9;
     padding: 50px 0;
     text-align: center;
 }

 .location h2 {
     font-size: 32px;
     font-weight: bold;
     margin-bottom: 20px;
 }



 /* Image Styling */
 .img-fluid {
     max-width: 100%;
     height: auto;
     border-radius: 10px;
 }
 
 /* Call-to-Action Section */
 .call-to-action {
     background: #0f1521;
     color: white;
     padding: 30px 0;
 }
 
 /* .call-to-action .btn {
     background: #0f1521;
     color: white;
     border: 2px solid white;
     font-weight: bold;
 }
 
 .call-to-action .btn:hover {
     background: #0f1521;
     color: white;
 } */


 /* explore amenities section */
.explore-heading {
     font-size: 36px;  /* Adjust font size */
     font-weight: bold;
     text-transform: uppercase;
     font-family: 'Playfair Display', serif;
 }
 
 .black-text {
     color: #0c1b2c; /* Dark blue/black color */
 }
 
 .gold-text {
     color: #b5893d; /* Gold color */
 }
 
.feature-card {
     background-color: white;
     text-align: center;
     padding: 30px;
     margin: 20px 0; 
     border-radius: 10px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease-in-out;
     position: relative;
     overflow: hidden;
     font-family: 'Playfair Display', serif;
 }
 
 .feature-card i {
     font-size: 2rem;
     color: #b38b1d;
     transition: 0.3s;
 }
 
 .feature-card h5 {
     font-size: 1.1rem;
     margin-top: 15px;
     font-weight: bold;
     color: #12263f;
 }
 
 /* Slide Right Effect */
 .feature-card::before {
     content: "";
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background-color: #b38b1d;
     transition: all 0.4s ease-in-out;
     z-index: 0;
 }
 
 .feature-card:hover::before {
     left: 0;
 }
 
 .feature-card:hover h5,
 .feature-card:hover i {
     color: white;
     position: relative;
     z-index: 1;
 }
 
 /* Responsive Grid */
 @media (max-width: 768px) {
     .feature-card {
         padding: 20px;
     }
 }
/* end explore amenities section */


/* Explore nearby attractions   */
.image-card {
     position: relative;
     overflow: hidden;
     border-radius: 8px;
     cursor: pointer;
     transition: transform 0.3s ease-in-out;
 }

 .image-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease-in-out;
 }

 .image-card:hover img {
     transform: scale(1.1);
 }

 /* Overlay Effect */
 .overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: rgba(0, 0, 0, 0.9);
     color: white;
     text-align: center;
     padding: 10px;
     /* opacity: 0; */
     transition: opacity 0.3s ease-in-out;
 }

 /* .image-card:hover .overlay {
     opacity: 1;
 } */

 /* Modal Image Styling */
 .modal-img {
     width: 100%;
     height: auto;
     border-radius: 8px;
 }

 /* Modal Content Styling */
 .modal-content {
     border-radius: 12px;
 }

 /* Explore nearby attractions end  */



 /* Priamry location start  */
.cards {
     border: 2px solid transparent;
     transition: all 0.3s ease-in-out;
     cursor: pointer;
     text-align: center;
 }

 .cards:hover {
     border-color: #ff9800;
     transform: scale(1.05);
 }

 .cards:active {
     transform: scale(0.95);
 }
.cards p{
     font-weight: bold;
     font-size: large;
}
 .cards img {
     width: 100px;
     height: 100px;
     margin: 20px auto;
 }

 .btn1-custom {
     background-color: #ff9800;
     color: white;
     border-radius: 20px;
     padding: 8px 50px;
     margin-top: 5px;
 }

 .btn1-custom:hover {
     background-color: #e68900;
 }
 /* Priamry location end  */


 /* contact style start  */
 .contact-section {
     padding: 60px 0;
     background-color: #f8f9fa;
 }
 .contact-feature {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
 }
 .contact-feature-icon {
     font-size: 24px;
     background: #007bff;
     color: #fff;
     width: 50px;
     height: 50px;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 50%;
     margin-right: 15px;
 }
 .contact-feature_link {
     display: block;
     color: black;
     text-decoration: none;
     letter-spacing:0cap;
 }

 .contact-feature_link:hover {
     text-decoration: underline;
 }
 .contact-form {
     background: #fff;
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
 }
 .contact-form input, .contact-form textarea, .contact-form select {
     width: 100%;
     padding: 10px;
     margin-bottom: 10px;
     border-radius: 5px;
     border: 1px solid #ccc;
 }
 .contact-form button {
     background: #007bff;
     color: white;
     border: none;
     padding: 10px 15px;
     width: 100%;
     cursor: pointer;
     border-radius: 5px;
     font-size: 16px;
 }
 .contact-form button:hover {
     background: #0056b3;
 }
 .map iframe {
     width: 100%;
     border-radius: 8px;
 }
.contact-feature {
display: flex;
align-items: center;
gap: 10px;
padding: 10px;
border-radius: 8px;
transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-feature-icon {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
background-color: #f3f3f3; /* Default background */
color: #333; /* Default icon color */
border-radius: 50%;
transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect */
.contact-feature:hover {
background-color: #f9f9f9;
transform: translateY(-3px);
}


.contact-feature-icon:hover {
background-color: #ff5722; /* Change background on hover */
color: white; /* Change icon color on hover */
transform: scale(1.1); /* Slight zoom effect */
}

.contactborder{
background-color: #f3f3f3;
border-radius: 10px;
}

/* const style end  */


/* Faq style  */

.faq-header {
     font-size: 22px;
     font-weight: bold;
     color: #313436;
     margin-bottom: 20px;
     
 }
 
 .faq-icon {
     color: #ff9800;
     margin-right: 8px;
 }
 
 .accordion-item {
     border: none;
     margin-bottom: 10px;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
 }
 
 .accordion-button {
    background: #f9f9f9;
     color: rgb(9, 12, 0);
     font-size: 16px;
     font-weight: bold;
    padding: 10px;
 }
 
 .accordion-button:focus {
     box-shadow: none;
 }
 
 .accordion-body {
     background: #f9f9f9;
     color: #333;
     font-size: 15px;
     padding: 10px;
 }
 
 .faq-image img {
     max-width: 90%;
     border-radius: 10px;
     box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
 }
 
     
 .accordion-button {
     display: flex;
     justify-content: space-around;
     align-items: end;
 }
 
 .dropdown-icon {
     margin-right: auto;
   position: absolute;
   right: 0;
   
     transition: transform 0.3s ease-in-out;
 }
 
 .accordion-button:not(.collapsed) .dropdown-icon {
     transform: rotate(180deg);
 }
 .faqdiv{
     background-color: #f7f3f3b0;
     border-radius: 10px;
     padding: 30px;
  }
 
/* faq style end  */


 /* footer social style  */


 .social-icons {
     display: flex;
     gap: 15px; /* Space between icons */
 }
 
 .social-icons li {
     list-style: none;
 }
 
 .social-icons a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #007bff; /* Adjust background color */
     color: white;
     font-size: 18px;
     text-decoration: none;
     transition: background 0.3s ease;
 }
 
 .social-icons a:hover {
     background: #0056b3;
 }
  /* footer social end  */


    /* review section  */

/* .review-section {
     text-align: center;
     padding: 50px 20px;
     background: #eceff292;
 } */
 
 .review-section h2 {
     font-size: 2rem;
     margin-bottom: 20px;
     color: #333;
 }
 
 .review-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
    
 }
 
 .review {
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     max-width: 350px;
     text-align: left;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .review:hover {
     transform: scale(1.05);
     box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
 }
 .review-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 10px;
 }
 
 .review-header img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     border: 2px solid #ffd700; /* Gold border */
 }
 
 .review h3 {
     margin: 0;
     font-size: 1.2rem;
     color: #444;
 }
 
 .review .date {
     font-size: 0.9rem;
     color: #777;
 }
 
 .rating {
     font-size: 1.5rem;
     color: gold;
     margin-bottom: 10px;
 }
 
 .comment {
     font-size: 1rem;
     color: #555;
 }
 
 .write-review-btn {
     margin-top: 20px;
     background: #ff6600;
     color: white;
     padding: 10px 20px;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     font-size: 1rem;
 }
 
 
 .write-review-btn:hover {
     background: #e65c00;
 }

 /* review end  */


 /* top header  */


 .top-bar {
     background-color : #b28b2d; /* Dark background */
      color: white;
      font-size: 14px;
    }
    .top-bar a {
      color: white;
      text-decoration: none;
    }
    .top-bar a:hover {
      color: #ffd700;  /* Gold hover effect */
    }
    .top-bar i {
      color: #fff  ;/* Gold icons */
      margin-right: 10px;
    }


    /* top header end  */