:root {
  --primary: #F5FBFF;
  --secondary: #069EB6;
  --text: #000;
  --third: #069EB6;
}

body {
  font-family: 'Playfair Display', serif !important;
  background: #F5FBFF;
}

.container {
  max-width: 1320px;
  width: 100%;
}

img {
  width: 100%;
}

.logo {
  max-width: 30%;
}

.logo img {
  max-width: 25%;
}

.navbar-container {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 18px 8%;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbars ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.navbars ul li a {
  text-decoration: none;
  color: #1E293B;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: .3s ease;
}

.navbars ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #069EB6;
  transition: .4s ease;
  border-radius: 10px;
}

.navbars ul li a:hover::after {
  width: 100%;
}

.navbars ul li a:hover {
  color: #069EB6;
}

.book-btn {
  padding: 12px 24px;
  background: transparent;
  color: #069EB6;
  border: #069EB6 2px solid;
  text-decoration: none;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: .3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.book-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #069EB6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 40px;
  z-index: -1;
}

.book-btn:hover::after {
  transform: scaleX(1);
}

.book-btn .arrow {
  transition: 0.3s ease;
}

.book-btn:hover {
  transform: translateY(-2px);
  color: #F5FBFF;
}

.book-btn:hover .arrow {
  transform: translateX(5px);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  width: 28px;
  height: 3px;
  background: #0F172A;
  border-radius: 10px;
  transition: .3s;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.main-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  transition: left 0.8s ease-in-out;
}

.slide.active {
  left: 0;
  z-index: 2;
}

.slide.prev {
  left: -100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: rgba(0, 0, 0, 0.35);
  color: white;
}

.left-content {
  max-width: 50%;
}

.left-content h1 {
  font-size: 55px;
  margin-bottom: 15px;
}

.left-content p {
  font-size: 18px;
  line-height: 1.6;
}

.booking-form {
  width: 320px;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 10px;
  color: #222;
  margin-top: 87px;
}

.booking-form h2 {
  margin-bottom: 15px;
}

.field {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.field label {
  margin-bottom: 5px;
  font-size: 14px;
}

.field input,
.field select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.booking-form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #c59d5f;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.booking-form button:hover {
  background: #a67c3d;
}

.thumbnails {
  position: absolute;
  bottom: 30px;
  left: 60px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.thumbnail {
  width: 100px;
  height: 70px;
  cursor: pointer;
  border: 3px solid transparent;
  overflow: hidden;
  border-radius: 6px;
  transition: 0.3s;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail.active-thumb {
  border-color: #fff;
  transform: scale(1.08);
}

.pt-100 {
  margin: 80px 0px;
}

.span-abt {
  padding: 12px 24px;
  background: transparent;
  color: #069EB6;
  border: #069EB6 2px solid;
  text-decoration: none;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
}

.luruxy-badge {
  position: absolute;
  top: 66px;
  left: 0;
  width: 80%;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 15px rgba(0, 0, 0, 0.2),
    0 0 25px rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  overflow: hidden;

  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.08);
}

table th {
  background: #069EB6;
  color: #fff;
  padding: 18px 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

table td {
  padding: 16px 20px;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

table tr:nth-child(even) {
  background: rgba(6, 158, 182, 0.05);
}

table tr:hover {
  background: rgba(6, 158, 182, 0.12);
  transition: 0.3s ease;
}

table tr:last-child td {
  border-bottom: none;
}

table td:last-child {
  font-weight: 600;
  color: #069EB6;
}

.rooms-section {
  background-color: #f7faff;
  padding: 80px 0px;
}

/* .section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#069EB6;
    font-weight:600;
    font-size:20px;
}

.section-title h2{
    font-size:55px;
    font-weight:700;
    line-height:1.3;
    margin-top:15px;
}

.section-title h2 span{
    color:#069EB6;
} */

.room-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.room-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 516px;
  object-fit: cover;
  border-radius: 25px;
  transition: 0.5s ease;
}

.room-image:hover img {
  transform: scale(1.1);
}

.room-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #069EB6;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.room-content {
  padding: 40px;
}

.offer {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 1px 18px;
  border-radius: 30px;
  color: #069EB6;
  font-weight: 600;
  margin-bottom: 1px;
  font-size: 12px;
}

.room-content h3 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
}

.room-content p {
  color: #666;
  line-height: 30px;
  font-size: 15px;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #555;
}

.room-feature i {
  color: #069EB6;
  font-size: 20px;
}

.price-box {
  border-top: 1px solid #ddd;
  padding-top: 25px;
  margin-top: 20px;
}

.price {
  font-size: 25px;
  font-weight: 700;
}

.price span {
  font-size: 18px;
  color: #777;
}

.detail-btn {
  background: #069EB6;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
}

.detail-btn:hover {
  background: #047f91;
  color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  color: #069EB6;
}

.span-text {
  background: linear-gradient(90deg, #069EB6, #0fd4f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.service_img {
  overflow: hidden;
  border-radius: 25px;
}

.service_img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 25px;
  transition: 0.5s ease;
}

.service_img:hover img {
  transform: scale(1.1);
}

.Service-box {
  background-color: #fff;
}

.text-service {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow:
    0 0 15px rgba(0, 0, 0, 0.2),
    0 0 25px rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  margin: 120px 0;
  margin-left: -174px;
}
.text-service-1 {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow:
    0 0 15px rgba(0, 0, 0, 0.2),
    0 0 25px rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  margin: 120px 0;
  margin-right: -174px;
}

.choose-us {
  background: #f8f9fa;
}

.choose-tag {
  color: #069EB6;
  font-weight: 600;
  font-size: 18px;
}

.choose-us h2 {
  font-size: 42px;
  font-weight: 700;
}

.choose-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  height: 300px;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}

.choose-box i {
  font-size: 45px;
  color: #069EB6;
  margin-bottom: 20px;
}

.choose-box h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}

.choose-box:hover {
  transform: translateY(-10px);
  background: linear-gradient(90deg, #069EB6, #0fd4f2);
}

.choose-box:hover i,
.choose-box:hover h4 {
  color: #fff;
}

.testinomial-section {
  background-image: url(../images/testinomial.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 50px 0;
  position: relative;
  z-index: 1;
  padding-top: 25px;
}

.testinomial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.gallery-box{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-box img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s;
}

.gallery-box:hover img{
    transform: scale(1.08);
}

.gallery-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.5s;
}

.gallery-box:hover .gallery-overlay{
    opacity: 1;
}

.gallery-overlay i{
    width: 60px;
    height: 60px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.footer-section{
    background-image: url(../images/footer.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
    z-index: 1;

    color: #fff;
}
.pd-101{
  margin-top: 180px;
}
.footer-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: -1;
}

.footer-top-box{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 35px;
    margin-bottom: 80px;
}
.footer-contact-box{
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.footer-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-info span{
    color: #ccc;
    font-size: 14px;
    margin-bottom: 5px;
}

.link-footer{
    color: #fff;
    text-decoration: none;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    line-height: 1.7;

    transition: 0.4s;
}

.link-footer i{
    color: #069EB6;
    margin-top: 5px;
    min-width: 18px;
}

.link-footer:hover{
    color: #069EB6;
    padding-left: 5px;
}
.footer-contact-box{
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-contact-box .icon{
    width: 65px;
    height: 65px;

    background: #069EB6;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
}

.footer-contact-box span{
    color: #ccc;
    font-size: 14px;
}

.link-footer{
  font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.footer-widget h3{
    font-size: 26px;
    margin-bottom: 25px;
    position: relative;
}

.footer-widget h3::before{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;

    width: 60px;
    height: 3px;

    background: #069EB6;
}

.footer-widget p{
    color: #ccc;
    line-height: 1.9;
}

.footer-social{
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a{
    width: 45px;
    height: 45px;

    background: rgba(255,255,255,0.1);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 18px;

    transition: 0.4s;
}

.footer-social a:hover{
    background: #069EB6;
    transform: translateY(-5px);
}


.footer-links{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li{
    margin-bottom: 14px;
}

.footer-links li a{
    color: #ccc;
    text-decoration: none;
    transition: 0.4s;
}

.footer-links li a:hover{
    color: #069EB6;
    padding-left: 8px;
}

.footer-gallery{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

.footer-gallery img{
    width: 100%;
    height: 80px;

    object-fit: cover;

    border-radius: 12px;

    transition: 0.4s;
}

.footer-gallery img:hover{
    transform: scale(1.08);
}


.footer-map iframe{
    border-radius: 20px;
}

.footer-bottom{
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.footer-bottom-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content p{
    margin: 0;
    color: #ccc;
}
.whatsapp-float{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float:hover{
    transform: scale(1.1);
    color: #fff;
}

.banner-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/footer.webp');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.hotel-counter-section{
    padding:80px 0;
    background:#069EB6;
    position:relative;
    overflow:hidden;
}

.hotel-counter-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.hotel-counter-section::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    bottom:-100px;
    right:-80px;
}

.counter-top-heading{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.counter-top-heading span{
    display:inline-block;
    background:#fff;
    color:#069EB6;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.counter-top-heading h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
}

.counter-top-heading p{
    color:#eafcff;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    position:relative;
    z-index:2;
}

.counter-box{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    transition:0.4s;
}

.counter-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.18);
}

.counter-number{
    font-size:52px;
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
}

.counter-box h4{
    color:#fff;
    font-size:22px;
    font-weight:500;
}

.contact-section{
    padding:90px 0;
    background:#f8f9fb;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.contact-info{
    background:#069EB6;
    padding:50px;
    border-radius:20px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.contact-info::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.sub-title{
    display:inline-block;
    background:#fff;
    color:#069EB6;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.contact-info h2{
    font-size:42px;
    margin-bottom:20px;
}

.contact-info p{
    line-height:1.8;
    color:#eefcff;
}

.contact-item{
    display:flex;
    gap:18px;
    margin-top:30px;
    align-items:flex-start;
}

.contact-item i{
    width:55px;
    height:55px;
    line-height:55px;
    text-align:center;
    background:#fff;
    color:#069EB6;
    border-radius:50%;
    font-size:20px;
}

.contact-item h4{
    margin-bottom:6px;
    font-size:20px;
}

.contact-item a{
    color:#fff;
    text-decoration:none;
}

.contact-form-box{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:16px;
    transition:0.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#069EB6;
}

.contact-btn{
    width:100%;
    padding:16px;
    border:none;
    background:#069EB6;
    color:#fff;
    font-size:18px;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.contact-btn:hover{
    background:#047d90;
}

.appointment-section{
    padding:90px 0;
    background:#f5f9fc;
}

.appointment-wrapper{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

.appointment-content{
    background:#069EB6;
    padding:60px;
    text-align:center;
    color:#fff;
}

.appointment-content span{
    display:inline-block;
    background:#fff;
    color:#069EB6;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.appointment-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.appointment-content p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.appointment-form-box{
    padding:50px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    font-size:16px;
    transition:0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#069EB6;
}

.appointment-btn{
    width:100%;
    background:#069EB6;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:12px;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

.appointment-btn:hover{
    background:#047e92;
}

.swiper-button-next,
.swiper-button-prev{
    width:55px !important;
    height:55px !important;
    background:#069EB6;
    border-radius:50%;
    color:#fff;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:#047f92;
    transform:scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px !important;
    font-weight:700;
    color: #fff;
}
.swiper-button-prev{
    left:20px;
}

.swiper-button-next{
    right:20px;
}
