<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&amp;display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}
body{
  min-height: 100vh;
}
/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #60cdff;
}
::selection{
  background: rgb(0,123,255,0.3);
}
.content{
  max-width: 1250px;
  margin: auto;
  padding: 0px 30px;
}
.navbar{
  position: fixed;
  z-index: 5;
  width: 100%;
  padding: 25px 0;
  transition: all 0.3s ease;
}
.navbar.sticky{
  padding: 10px 0;
  background: #1b1b1b;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
}
.navbar .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo img{
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  padding-top: 10px;
}
.navbar .menu-list{
  display: inline-flex;
}
.menu-list li{
  list-style: none;
}
.menu-list li a{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu-list li a:hover{
  color: #007bff;
}
.menu-list li a.active{
  border-bottom: 4px solid #007bff;
  transition: 0.4s ease-in;
}
.menu-list li a.foglal{
  color: #60cdff;
}
.banner{
  height: 100vh;
  background: url(images/front.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.banner h1{
  font-family: "Sacramento", cursive;
  font-style: normal;
  font-size: 150px;
  color: #fff;
  padding-top: 250px;
}
hr{
  border-top: 2px solid #60cdff;
  width: 50%;
  height: 1px;
  margin: 0 auto;
}
.banner p{
  color: #fff;
  font-size: 25px;
  padding-top: 25px;
}

.banner #open{
  color: #000;
  font-size: 60px;
  padding-top: 40px;
}

/* about */
.about{
  max-width: 80%;
  margin: auto;
  margin-top: 50px;
}
.about img{
  padding-top: 20px;
  max-width: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
  margin-bottom: 30px;
}
.about .title{
  text-align: center;
  font-size: 35px;
  font-weight: 700;
}
.about p{
  padding-top: 20px;
  text-align: justify;
}
.icon{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.icon.cancel-btn{
  position: absolute;
  right: 30px;
  top: 20px;
}
.navbar.sticky .icon.cancel-btn{
  top: 10px;
}

/* rooms */
.rooms{
  display: flex;
  align-items: center;
  justify-content: center;
}

.rooms-bg{
  height: 30vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(image/contact-bg.jpg);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px 0px;
}

.rooms-bg p{
  margin-top: 15px;
}

.rooms-title{
  text-align: center;
  font-size: 35px;
  margin-bottom: 20px;
}

.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
  margin-bottom: 50px;
}

.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.slide-content-2{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.card{
  border-radius: 25px;
  background-color: #EFEFEE;
}

.image-content, .card-content{
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-content{
  position: relative;
  row-gap: 5px;
  border-radius: 25px 25px 0 25px;
}

.card-overlay{
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #EFEFEE;
}

.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  padding: 3px;
}

.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.card-name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.card-desc{
  font-size: 14px;
  color: #707070;
  text-align: center;
}

.card-btn{
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 8px 16px;
  background-color: var(--clr);
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3 ease;
}

.card-btn:hover{
  opacity: 0.7;
}

.swiper-button-next, .swiper-button-prev{
  color:#007bff;
  transition: color 0.3s ease;
}

@media screen and (max-width: 450px){
  .card-image{
    width: 120px;
    height: 120px;
  }
}

/* gallery */
.gallery-bg{
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(image/contact-bg.jpg);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rooms-bg p{
  margin-top: 15px;
}

.gallery-container{
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 8%;
}

.gallery-items{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}

.gallery-items img{
  width: 100%;
}

/* contact */
.contact-bg{
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(image/contact-bg.jpg);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-bg h3{
  font-size: 1.3rem;
  font-weight: 400;
}

.contact-line div{
  margin: 0 0.2rem;
}

.contact-line div:nth-child(1),
.contact-line div:nth-child(3){
  height: 3px;
  width: 70px;
  background: #007bff;
}

.contact-line{
  align-items: center;
  display: flex;
}

.contact-line div:nth-child(2){
  width: 10px;
  height: 10px;
  background: #007bff;
  border-radius: 50%;
}


.contact-bg p{
  font-weight: 300;
  opacity: 0.9;
  margin: 1.6rem 0;
}

.contact-body{
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1rem;
}
.contact-info{
  margin: 2rem 0;
  text-align: center;
  padding: 2rem 0;
}

.contact-info span{
  display: block;
}

.contact-info div{
  margin: 0.8rem 0;
  padding: 1rem;
}

.contact-info span i{
  font-size: 2rem;
  padding-bottom: 0.9rem;
  color: #007bff;
}

.contact-info div span:nth-child(2){
  font-weight: 500;
  font-size: 1.1rem;
}

.contact-info p{
  padding-top: 0.4rem;
}

.contact-map{
  position: relative;
  padding-bottom: 30%;
  height: 0;
  text-align: center;
  margin-bottom: 150px;
}

.contact-map iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (min-width: 768px){
  .contact-bg p{
      width: 70%;
      margin-left: auto;
      margin-right: auto;
  }
  .contact-info{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px){
  .contact-bg p{
      width: 50%;
  }
}

@media screen and (min-width: 1200px){
  .contact-info{
      grid-template-columns: repeat(4, 1fr);
  }
}


/* footer */
footer{
  position: relative;
  width: 100%;
  background: #007bff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer .social_icon{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

footer .social_icon li{
  list-style: none;
}

footer .social_icon li a{
  font-size: 2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
}

footer .social_icon li a:hover{
  transform: translateY(-10px);
}
footer p{
  color: #fff;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

footer p a{
  color: #60cdff;
}
footer p a:hover{
  color: #1900ff;
}

footer .wave{
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(images/wave.png);
  background-size: 1000px 100px;
}

footer .wave#wave1{
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWave 4s linear infinite;
}

footer .wave#wave2{
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3{
  z-index: 1000;
  opacity: 0.3;
  bottom: 15px;
  animation: animateWave 3s linear infinite;
}

footer .wave#wave4{
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animateWave_02 3s linear infinite;
}



@keyframes animateWave
{
  0%
  {
    background-position-x: 1000px;
  }
  100%
  {
    background-position-x: 0px;
  }
}
@keyframes animateWave_02
{
  0%
  {
    background-position-x: 0ox;
  }
  100%
  {
    background-position-x: 1000px;
  }
}



@media (max-width: 868px) {
  body.disabledScroll{
    overflow: hidden;
  }
  .icon{
    display: block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 9;
  }
  .icon.cancel-btn{
    display: none;
  }
  .icon.cancel-btn.show{
    display: block;
  }
  .icon.hide{
    display: none;
  }
  .navbar .menu-list{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #222;
    display: block;
    padding: 40px 0;
    text-align: center;
    clip-path: circle(25px at calc(100% - 55px) calc(0% + 50px));
    transition: all 0.3s ease;
  }
  .navbar.sticky .menu-list{
    clip-path: circle(25px at calc(100% - 55px) calc(0% + 35px));
  }
  .navbar .menu-list.active{
    clip-path: circle(75%);
  }
  .navbar .menu-list li{
    margin-top: 40px;
  }
  .navbar .menu-list li a{
    font-size: 23px;
  }
}

@media screen and (max-width: 1000px){
  .banner h1{
    font-size: 135px;
  }
}

@media screen and (max-width: 820px){
  .banner h1{
    font-size: 120px;
  }

  .banner p{
    font-size: 20px;
  }
}

@media screen and (max-width: 650px){
  .banner h1{
    font-size: 100px;
  }
}

@media screen and (max-width: 530px){
  .banner h1{
    font-size: 75px;
  }

  .banner p{
    font-size: 15px;
  }
}

@media screen and (max-width: 400px){
  .banner h1{
    font-size: 50px;
  }
}</pre></body></html>