 @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;700&display=swap');

    :root {
      --body-font: 'Josefin Sans', sans-serif;
      --primary-color: #772222;
      --secondary-color: #cccccc;
      --white-color: #ffffff;
      --dark-black: #000000;
      --gray-color: #989292;
      --light-black: #111111;
      --home-back: #fdfdfd;
    }

    *,
    *::before,
    *::after{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      list-style: none;
      text-decoration: none;
      scroll-behavior: smooth;
    }
    
    .d-sm-none{
        display:flex;
    }
    

    .smooth-scroll {
      overflow: hidden;
    }

    a{
      text-decoration: none;
      color: var(--light-black);
    }

    .text-white{
      color: var(--home-back);
    }

    .title .text-dark{
      color: var(--light-black);
    }

    .text-uppercase{
      text-transform: uppercase;
    }

    body {
    width: 100%;
    height: 100%;
    font-family: var(--body-font);
    }

    html{
        overflow-x: hidden;
    }

    .container{
        width: 90%;
        max-width: 1140px;
        margin: 0 auto;
    }
    .header {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 5% 20px;
      padding-top: 0;
      background-color: transparent;
      z-index: 10;
      transition: background-color .5s ease;
    }


    .header.active{
      background-color: var(--home-back);
      box-shadow: 0 .3rem .5rem rgba(0, 0, 0, 0.2);
    }

    .logo-container img {
      width: 120px;
    }

    .navigation {
      display: flex;
      gap: 20px;
    }

    .nav-link {
       position: relative;
       display: inline-block;
       overflow: hidden;
       height: 1em;
        line-height: 1.1em;
      font-size: 18px;
      text-transform: capitalize;
      color: var(--dark-black);
      cursor: pointer;
      transition: color 0.3s ease;
    }


   .nav-link span {
  display: block;
  transition: transform 0.3s ease;
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  display: block;
  transform: translateY(0);
  transition: transform 0.3s ease;
  color: #000;
}

.nav-link:hover span {

  transform: translateY(-100%);
}

.nav-link:hover::before {
    color: var(--primary-color);
  transform: translateY(-100%);
}



    /* .nav-link:hover {
      color: var(--primary-color);
    } */

 
    .cta-button .btn {
        display: inline-block;
        background-color: transparent;
        padding: 15px 25px;
        border-radius: 150px;
        font-weight: 300;
        border: 1px solid var(--light-black);
        position: relative;
        overflow: hidden;
        color:var(--light-black);
        transition: background-color .5s ease, color .5s ease;
       
    }

    .cta-button .btn:hover{
        background-color: var(--dark-black);
        color: var(--home-back);
    }
    .mobile-icon {
      display: none;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border: 1px solid var(--light-black);
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
      position: relative;
    }


    /* Smooth rotation and transition */
.mobile-icon i {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Rotate when menu is open */
.mobile-icon.active i.fa-times {
  transform: rotate(180deg);
}


    .header .mobile-icon::before{
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background-color: #000000;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    transition: all .5s ease;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition:all .5s ease;
}

  .header .mobile-icon i{
    color: var(--light-black);
    z-index: 2;
    transition: all .5s ease;
}

.header .mobile-icon:hover::before{
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;
}

    .header .mobile-icon:hover i{
        color: var(--white-color);
    }



    #home .home-container{
        position: relative;
        background-color: var(--home-back);
        margin-top: -100px;
    }

    #home .home-container .image-box{
        width: 60%;
        z-index: 1;
        margin: 0 auto;
        padding-top: 50px;
    }

    #home .home-container .image-box img{
       width: 100%;
    }


#home .scrolling-section{
 width: 60%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0 auto;
  transform: scale(0.6); /* Initial scale */
  transform-origin: center center;
}

#home .scrolling-section img{
border-top-left-radius: 50%;
border-top-right-radius: 50%;
 -webkit-border-top-left-radius: 50%; /* Safari, older iOS, older Chrome */
 -webkit-border-top-right-radius: 50%; /* Safari, older iOS, older Chrome */
 
 -moz-border-top-left-radius: 50%; /* Safari, older iOS, older Chrome */
 -moz-border-top-right-radius: 50%; /* Safari, older iOS, older Chrome */

width: 100%;
height:100%;
 object-fit: cover;
 margin: 0 auto;
 transition: border-radius 0.1s ease; /* helpful for smoother transition */
}


.home-container .text-container{
    position: absolute;
    top: 60%;
    right: 3%;
}

.home-container .text-container h3{
    font-size: 3vw;
    color: var(--light-black);
    margin-bottom: 50px;
    text-align: right;
}


.text-fill-hover {
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  background: linear-gradient(to right,#772222   50%, #000 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.5s ease;
  cursor: pointer;
}

.text-fill-hover:hover {
  background-position: left bottom;
}


.text-fill-hover:hover {
  background-position: left bottom;
}



.home-container .arrow-dropdown{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 5%;
    top: 60%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
   
    cursor: pointer;
  z-index: 1;
  overflow: hidden;
}



.circle-wrapper {
  width: 150px;
  height: 150px;
  position: relative;
  cursor: pointer;
}

svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* Start animation from top */
}

.circle-bg {
  fill: white;
  stroke: #ddd;
  stroke-width: 2;
}

.circle-border {
  fill: none;
  stroke: #772222;
  stroke-width: 2;
  stroke-dasharray: 377; /* Circumference of circle (2πr) */
  stroke-dashoffset: 377;
  transition: stroke-dashoffset 0.5s ease;
}

.circle-wrapper:hover .circle-border {
  stroke-dashoffset: 0;
}

.fadeDown{
  animation: fadeDown 3s ease infinite;
}

@keyframes fadeDown {
  0%,100%{
    transform: translateY(0);

  }

  50%{
    transform: translateY(10px);
  }
}


/* highlight section start */

#highlight{
  padding: 100px 0;
  position: relative;
  margin-top:710px;
  background-color: var(--primary-color);
}

.title{
  font-size: 3vw;
  padding-bottom: 10px;
  color: var(--home-back);
}

.highlight-container{
  display: flex;
  justify-content:space-between;
  gap: 20px;
}

.highlight-container .box-1{
  padding: 50px 0;
  width: 25vw;
}

.highlight-container .box-1 h1{
    font-size:3rem;
  font-weight: 400;
}

.highlight-container .box-1 p{
  line-height: 1.5;
  color: #f1f1f1e7;;
}

.highlight-container .box-2{
  display: flex;
  gap: 40px;
  width: 40vw;
}

.highlight-container .box-2 ul{
  align-self: flex-end;
  padding-bottom: 20px;
}

.highlight-container .box-2 ul li{
  color: var(--home-back);
  /*width: max-content;*/
  white-space: nowrap;      /* Optional: prevents wrapping */
  direction: rtl;
  text-align:right;
  font-size: 15px;
  padding-bottom: 15px;
  cursor:pointer;
  
}

.highlight-container .box-2 .image{
  width: 100%;
  height: 100%;
}

.highlight-container .box-2 .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.highlight-container .box-3{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 0;
  padding: 30px 0;
  color: var(--home-back);
}

.highlight-container .box-3 i{
  font-size: 50px;
}

.highlight-container .about-the-project h3{
  text-align: right;
}

.play-video-image{
    background:url('../images/normal-background.png');
    background-size:cover;
    position:relative;
    min-height:100vh;
}

.play-icon {
      position: absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--home-back);
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--dark-black);
      font-size: 30px;
      cursor: pointer;
      animation: pulse 2s infinite;
      box-shadow: 0 0 0 var(--home-back);
      transition: transform 0.3s ease;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
      }
      70% {
        box-shadow: 0 0 0 20px rgba(255, 60, 60, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(255, 60, 60, 0);
      }
    }

    .fullscreen-video-container {
      position: fixed!important;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease;
      z-index: 20;
    }

    .fullscreen-video-container.active {
      opacity: 1;
      visibility: visible;
    }

    .fullscreen-video-container video {
      max-width: 90%;
      max-height: 90%;
      border: 4px solid #fff;
      border-radius: 10px;
    }

    .close-btn {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 32px;
      color: #fff;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .close-btn:hover {
      transform: rotate(90deg);
    }

    #gallery{
      padding: 100px 0;
      position: relative;
      min-height: 100vh;
      background-image: url('../images/gallery-back.jpg');
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;

    }

    .gallery-container{
      padding: 100px 0;
    }


   .gallery-section {
      height: 200vh;
      position: relative;
      overflow: hidden;
    }

    .gallery-wrapper {
      position: sticky;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .center-img {
      position: absolute;
      width: 80vw;
      max-width: 400px;
      height: auto;
      max-height: 450px;
      object-fit: cover;
      /* border-radius: 20px; */
      z-index: 1;
      transform: scale(1.2);
      pointer-events: none;
    }

    .scrolling-columns {
      position: relative;
      width: 100%;
      max-width: 1140px;
      display: flex;
      justify-content: space-between;
      gap: 5vw;
      z-index: 2;
    }

    .column {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .column img {
      width: 40vw;
      max-width: 400px;
      height: auto;
      max-height: 450px;
      object-fit: cover;
    }

    .column.left {
      padding-top: 20vh;
    }

    .column.right {
      padding-top: 35vh;
    }



    /* amenities css */
     .swiper {
      width: 100%;
      height: 100vh;
      position: relative;
    }

    .amenities-swiper{
        position: relative;
        margin-top: -130px;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      transition: transform 0.5s ease;
      transform: scale(0.9);
    }

    .swiper-slide-active {
      transform: scaleY(2);
      z-index: 2;
    }

  .swiper-slide img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    transform-origin: top center;
    transform: scale(0.95);
  }

  .swiper-slide-active img {
    transform: scale(1.5);
  }

  .swiper-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    z-index: 10;
    top: 98%;
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: black;
  }

  .swiper-button-group{
      width:250px;
      position: absolute;
      top: 99%;
      right: 8%;
  }

  .swiper-button-prev{
    width: 100%;
  }
   
  .swiper-button-next:after, .swiper-button-prev:after{
      font-size: 20px;
      display: none;
  }


.mobile-amenities{
    display:none;
}

@media(max-width:768px){
    
  .mobile-amenities{
   display:block;
   margin-bottom:70px;
   }
}

  .amenities-container{
    position: relative;
    display: flex;
    width: 70vw;
    margin-top: -185px;
  }
  
  .amenities-container-amenities{
      display:none;
  }
  
  @media(max-width:768px){
      .amenities-container-amenities{
      display:block;
  }
  }
  

  .title-with-image{
    position: relative;
    width: 40vw;
    padding: 50px 80px;
    z-index: 1;
  }
    
  .title-with-image h1{
    font-weight: 400;
    color: #222;
    padding-bottom: 20px;
  }

  .title-with-image h1 span{
    padding: 0;
    color: var(--white-color);
  }

  .title-with-image p{
    line-height: 1.3;
    color: gray;
    padding: 10px;
  }
    

  .amenities-container .image{
    position: absolute;
    top: 12%;
    left: 35%;
    align-self: flex-end;
    z-index: -1;
    width: 130px;
    margin-left: -100px;
    margin-top: -20px;
  }

    .amenities-container .image img{
    width: 100px;
    }


    #panorama {
        width: 100%;
        height: 400px;
    }

  #map {
    position: relative;
    width: 100vw;
    margin: 0 auto;
    z-index: -1;
  }

    #map iframe{
      height: 450px;
      width: 100%;
      
    }

    #nearby{
      position: relative;
      width: 70vw;
      background-color: var(--primary-color);
      margin-left: auto;
      margin-top: -180px;
      z-index: 5;
    }

    #nearby .nearby-container{
      display:flex;
      width: 70vw;
      margin: 0 auto;
      gap: 50px;
      overflow: hidden;
    }

    #nearby .nearby-image{
      width: 50%;
    }

     #nearby .nearby-image img{
      width: 100%;
      height: 100%;
      object-fit: cover;
     }

     #nearby .nearby-container .nearby-content{
      width: 50%;
      display: flex;
      gap: 50px;
      padding: 20px 30px!important;
     }

     #nearby .nearby-container .nearby-content .nearby-content-name h2{
      font-size: 2vw;
      align-self: flex-start;
      text-transform: uppercase;
      font-weight: 400;
      padding-top: 30px;
     }
     

    #nearby .nearby-container .nearby-content .nearby-content-name h2 span{
      color: var(--home-back);
      display: block;
    }


    #nearby .nearby-container .nearby-content h1{
      display: inline-block;
      font-size: 15vw;
      text-transform: uppercase;
      color: var(--home-back);
      font-weight: 400;
      padding-bottom: 0;
    }

    #nearby .nearby-container .nearby-content h1 span{
      display: block;
       font-size: 2vw;
      font-weight: 400;
    }

     #nearby .nearby-container .nearby-content .nearby-content-name{
      color: var(--white-color);
     }

       #nearby .nearby-container .nearby-content .nearby-content-name h2{
        width: max-content;
        display: block;
       }
          

       .custom-arrows {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
  z-index: 100;
}

.custom-arrows .slick-prev,
.custom-arrows .slick-next {
  background: transparent;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.custom-arrows .slick-prev:hover,
.custom-arrows .slick-next:hover {
  opacity: 1;
}

.footer-before-bg{
  width: 100%;
  height: 100vh;
  background-image: url(../images/footer-before-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.footer{
  background-color: var(--primary-color);
  padding: 100px 0 50px;
}

.footer .container{
  padding-bottom: 50px;
}

.footer .footer-first{
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .footer-first img{
  width: 50%;
}

.footer .footer-second{
  line-height: 1.5;
}
.footer .footer-second .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.footer .footer-second .container .qr-images{
    width:75%;
    margin:auto;
}


@media(max-width:768px){
    .footer .footer-second .container .qr-images{
    width:50%;
    margin:auto;
   }
}

.footer .copyright .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright .container p:first-child{
  padding-bottom: 10px;
}


/* backtotop css */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-color);
    z-index: 38;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
  }

  #backToTop svg {
    position: absolute;
    top: 0;
    left: 0;
  }


  .fixed-footer-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  background-color: #222; /* Dark background */
  box-shadow: 0 .3px .5px rgba(0, 0, 0, 0.2);
}

@media(max-width:768px){
    .fixed-footer-buttons{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.footer-btn {
  flex: 1;
  text-align: center;
  padding: 20px 10px;
  color: #fff;
  background-color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  border-right: 1px solid #444;
}

.footer-btn:last-child {
  border-right: none;
}

.footer-btn:hover,
.footer-btn.active {
  background-color: #993838; /* Highlight on hover */
}



   .popup-form {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,1);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 200;
    }
    .popup-content {
      background: #fff;
      padding: 50px 25px;
      width: 90%;
      max-width: 600px;
      border-radius: 10px;
      position: relative;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
    }
    .popup-content h2 {
      margin-top: 0;
      font-size: 22px;
    }
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 50px;
      cursor: pointer;
      color: #999;
    }
    .popup-content form input {
      width: 100%;
      height:50px;
      padding: 10px;
      margin: 12px 0;
      box-sizing: border-box;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    .popup-content button {
      width: 100%;
      padding: 17px;
      background: var(--primary-color);
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      margin-top: 10px;
      cursor: pointer;
    }
    .error {
      color: red;
      font-size: 13px;
      margin-top: -6px;
      margin-bottom: 5px;
    }
