@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:ital,wght@0,300;0,400;1,100;1,500;1,700&display=swap");

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:active,
:hover,
:focus {
  outline: 0 !important;
  outline-offset: 0;
}
a,
a:hover {
  text-decoration: none;
}
a:hover {
  color: var(--primary-color) !important;
}

ul,
ol {
  margin: 0;
  padding: 0;
}
:root {
  --primary-color: #a82c48;
  --secondary-color: #43121d;
  --third-color: #f98169;
  --white-color: #fff;
  --text-color: #555;
  --text-gray: #999;
  --black-color: #000;
  --primary-font: "Roboto", sans-serif;
  --secondary-font: "Quicksand", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  font-size: 100%;
  font-weight: 400;
}

::-webkit-scrollbar {
  width: 0.625rem;
}
::-webkit-scrollbar-track {
  background: var(--white-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/*
===============================
Custom Css Design
==============================
*/

h1 {
  font-weight: 700;
  font-size: 2.25rem;
  text-transform: capitalize;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  line-height: 3rem;
}

h2 {
  font-weight: 700;
  font-size: 2.25rem;
  text-transform: capitalize;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  line-height: 3rem;
}

h4 {
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h5 {
  color: var(--primary-color);
  font-family: var(--secondary-font);
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
p {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: 1px;
}

.main-btn {
  display: inline-block;
  padding: 0.625rem 1.875rem;
  line-height: 1.5625rem;
  background-color: var(--primary-color);
  border: 0.1875rem solid var(--primary-color);
  color: var(--white-color);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.white-btn {
  padding: 0.625rem 1.875rem;
  line-height: 25px;
  background-color: var(--white-color);
  border: 0.1875rem solid var(--white-color);
  color: var(--text-color);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.main-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.wrapper {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}
.text-content {
  width: 70%;
  margin: auto;
}

.counter-section h2,
.testimonial-section h2,
.book-food-text h2 {
  color: var(--white-color);
}

/*
===============================
Header Design Here
===============================
*/

.navigation-wrap {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease-out;
}
.navigation-wrap .nav-item {
  padding: 0 0.625rem;
  transition: all 200ms linear;
}
.navbar-toggler {
  border: unset;
}
.navbar-toggler:focus {
  outline: unset;
  border: unset;
  box-shadow: none;
}
.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  letter-spacing: 1px;
}
.navigation-wrap .main-btn {
  padding: 0.3125rem 1.4375rem;
  box-shadow: none;
  margin-left: 0.625rem;
}

/* Change navbar style on Scroll */

.navigation-wrap.scroll-on {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white-color);
  box-shadow: 0 0.125rem 0 rgb(0, 0, 0, 0.09);
  transition: all 0.15s ease-in-out 0s;
}

.top-banner {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  background: url("../images/bg/rr-desktop.webp") no-repeat left center;
  background-size: cover; /* cover keeps proportions */
}

/* Content styles */
.top-banner-content {
  position: relative; /* relative to the container */
  top: 0;
  padding-top: 150px; /* Push content down if needed */
}

.payment{
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #a82c48, #ffd166, #fff, #9b59b6);
    background-size: 300% 300%;
    color:transparent;
    text-transform: uppercase;
    background-clip: text;
    animation: colorMove 3s infinite alternate;
}

@keyframes colorMove {
    0%{
        background-position: 0% 50%;
    }
    100%{
        background-position: 100% 50%;
    }
}
/*
========================
Counter Section Css Start Here
========================
*/

.counter-section {
  background-color: var(--primary-color);
  padding: 0.5rem 0;
}
.counter-section p {
  color: var(--white-color);
  text-transform: uppercase;
}

/* About Section Start here*/

.about-section {
  background: var(--white-color);
}
.about-section .card,
.about-section .card img {
  border-radius: 0.625rem;
}
.about-section .text-sec {
  padding-left: 2rem;
}


/* Amenities Section Start Here */



/* Amenities Section End Here */



/*Food Type Section Start Here*/

.food-type {
  padding-top: 3.25rem;
}
.food-type ul li {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 32px;
  position: relative;
  margin-left: 30px;
}
.food-type ul li::before {
  position: absolute;
  left: -2.1875rem;
  color: var(--primary-color);
  font-size: 1.25rem;
  font-family: "Bootstrap-icons";
  content: "\F633";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
}

.story-section {
  width: 100%;
  height: 28.125rem;
  background: url(../images/bg/bg-2.jpg) no-repeat center;
  background-size: cover;
  padding-top: 100px;
  text-align: center;
}
.story-section h2 {
  color: var(--primary-color);
}

/* Specification  Section Start Here */
.card-body{
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 0.333rem !important;
  
}
/* Specification  Section End Here */


#services{
  padding: 6.25rem 0;
}
.nav-pills {
   border: 0;
   justify-content: center;
   align-items: center;
}

.nav-pills .nav-link{
    display: block;
    padding: 0 1.875rem;
    border: 0.0625rem;
    border-radius: 1.25rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    height: 2.25rem;
    margin: 0.625rem;
    line-height: 2.125rem;
    text-transform: uppercase;
}
/* Specification  Section End Here */


/* my css start here chat*/
/* ===== Blurred preview card (Site Plan & Floor Plans) ===== */
.blur-card{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(10,16,30,.14);
  isolation: isolate;
}
.blur-card__img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: blur(10px) brightness(.96) contrast(.96);
  transform: scale(1.03);
  transition: filter .25s ease, transform .25s ease;
}
.blur-card:hover .blur-card__img,
.blur-card:focus-within .blur-card__img{
  filter: blur(7px) brightness(.98) contrast(1);
  transform: scale(1.02);
}

/* dark vignette so the button pops */
.blur-card::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(70% 60% at 50% 50%, rgba(0,0,0,.15), rgba(0,0,0,.30) 70%);
  pointer-events:none;
}

/* centered CTA */
.blur-card__cta{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
}
.btn-download{
  display:inline-flex; align-items:center; gap:.55rem;
  padding:.9rem 1.15rem;
  border-radius:999px;
  color:#fff; background: var(--primary-color);
  font-weight:800; letter-spacing:.2px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.btn-download:hover{ filter:brightness(1.08); color:#fff !important; }

.blur-card__note{
  position:absolute; right:10px; bottom:8px;
  color:rgba(255,255,255,.85); font-size:12px;
  text-shadow:0 2px 6px rgba(0,0,0,.6);
}
/*experties_section Start Here */
#amenities_section{
  padding: 1.25rem 0 1rem;
}

#floorplan_section{
  padding: 1.25rem 0 2rem;
}

.expert_effect >h2{
  position: relative;
  padding-bottom: 2.5rem;
}

.expert_effect >h2::after{
  position: absolute;
  content:'';
  height: 0.125rem;
  width: 8.563rem;
  background: var(--primary-color);
  bottom: 1.125rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.single_promo_hover{
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
  will-change: transform;
}
.single_promo_1{
  box-shadow: 0 3px 20px 0px rgb(0 0 0 /12%);
  border-radius: 1.5rem;
  padding: 1.875rem 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.single_promo_1::before{
  position: absolute;
  content: '';
  width: 0.063rem;
  height: 0.125rem;
  top: 0rem;
  left: 0rem;
  border-radius: 50%;
  -wekit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.single_promo_1:hover::before{
  width: 100%;
  background: var(--primary-color);
}
.single_promo_hover:hover{
  box-shadow: 0 2rem 5rem rgb(0 0 0 /12%);
}

.single_promo_1 span{
  font-size: 40px;
  background-image: url(../images/review/promo-icon-bg.png);
  padding: 64px 0 57px 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
}
.single_promo_1 h4{
  padding-bottom: 0.438rem;
}
.single_promo_1 p{
  padding-top: 0.625rem;
  font-size: 0.938rem;
}



/*Testimonial section start here */

.testimonial-section {
  background-color: var(--primary-color);
}
.testimonial-section .carousel-item {
  margin-top: 3rem;
  padding: 10rem 3.125rem;
  background-color: var(--white-color);
  border-radius: 0.9375rem;
  text-align: center;
}
.testimonial-section .carousel-caption img {
  max-width: 5rem;
  border-radius: 50%;
  padding: 0.3125rem;
}
.testimonial-section .carousel-item .carousel-caption p {
  font-size: 1.3125rem;
  line-height: 2.0625rem;
  padding: 0 11% 0.625rem;
}
.testimonial-section .carousel-indicators {
  bottom: -2.8125rem;
}
.testimonial-section .carousel-indicators button {
  width: 15px;
  height: 15px;
  outline: none;
  border-radius: 50%;
  border: none;
  margin-right: 1rem;
  opacity: 0.2;
}
.testimonial-section .carousel-indicators button::active {
  opacity: 1;
}

.faq h4 span {
  color: var(--primary-color);
  font-size: 1.875rem;
  margin-right: 0.3125rem;
}

.book-food {
  position: relative;
  width: 100%;
  background: url("../images/bg/royal-residency.webp") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  background-position: 0 71.9125px;
  padding: 4.375rem 0;
  z-index: 1; /* ensure stacking context */
}

/* Dark overlay */
.book-food::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust 0.5 for more/less darkness */
  z-index: -1;
}

/* Ensure text stays above overlay */
.book-food > * {
  position: relative;
  z-index: 2;
}

.newsletter {
  width: 55%;
  margin: 0 auto;
}
.newsletter .form-control {
  height: 3.225rem;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  border: 0.1875rem solid var(--text-gray);
  color: var(--black-color);
  font-weight: 700;
}
.newsletter .form-control:hover,
.newsletter .food-control:focus {
  outline: none;
  box-sizing: none;
  border-color: var(--primary-color);
}
.footer {
  background: var(--primary-color);
}
.footer .footer-link {
  font-size: 1rem;
  color: var(--white-color);
  padding: 0 1.875rem;
}
.footer .footer-link:hover {
  color: var(--white-color) !important;
}
.footer a i {
  font-size: 1.5rem;
  color: var(--white-color);
  padding: 0 1rem;
}


.contact .info li span{
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: var(--primary-color);
}
.contact .info li p{
    font-size: 1rem;
    display: inline-block;
    margin: 0.75rem 0;
    color: var(--primary-color);
}
.contact .form-group{
    margin-bottom: 1.5rem;
}
.contact .form-control{
    height: 2.75rem;
    padding: 0.375rem 1.1875rem;
    font-size: 1rem;
    box-shadow: 0 0.1875rem 1.25rem 0 rgb(0 0 0 /12%);
}
footer .rera img {
  width: 8rem;
  height: 8rem;
}
         

.whatsd{
    position: fixed;
    bottom: 6%;
    right: 2%;
    z-index: 2;
    
  }
  .whatsd img{
    width: 2.813rem;
    height: 2.813rem;
  }


   
  .mob_call{
    display: none !important;
  }

/* Full-page overlay */
.loading{
  position:fixed; inset:0; display:flex; gap:.75rem;
  align-items:center; justify-content:center;
  background:rgba(0,0,0,.45);
  backdrop-filter:saturate(1.2) blur(2px);
  z-index:2000; /* was 1060 */
}

.hidden { display: none !important; }
.loading { z-index: 2000; } /* keep your other .loading styles, just ensure z-index is high */


/*
========================================
Responsive Style Start here

========================================

*/

@media (max-width: 1024px) {
}

@media (max-width: 991px) {
  .text-content {
    width: 100%;
  }
  .navigation-wrap .navbar-brand img {
    height: 3.8125rem;
  }
  .navigation-wrap {
    text-align: center;
    background-color: var(--white-color);
  }
  .navigation-wrap .nav-link {
    line-height: 1.875rem;
  }
  .top-banner {
    padding: 9.375rem 0 9.375rem;
  }
  .testimonial-section .carousel-item .carousel-caption p {
    padding: 0;
  }
}



@media (max-width: 767px) {
  h1 {
    font-weight: 600;
    font-size: 2rem;
    color: var(--white-color) !important;
    line-height: 2.5rem;
  }
  h2 {
    font-size: 2rem;
    line-height: 2.0625rem;
  }

  .story-section {
    height: auto;
    padding: 3rem 0;
  }
  .testimonial-section .carousel-item {
    padding: 11rem 3.125rem;
  }
  .testimonial-section .carousel-item .carousel-caption p {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
  .newsletter {
    width: 75%;
  }
  .newsletter .main-btn {
    width: 100%;
    margin-top: 1rem;
  }
  .footer .footer-link,
  .footer a i {
    padding: 0 0.7rem;
  }

  .top-banner {
    
    background: url("../images/bg/rr-mobile.webp") no-repeat center;
    height: auto; /* let the section adjust height based on content */
    padding-bottom: 1rem;
    background-position: center top; /* image stays top-centered */
  }
  .top-banner-content {
    padding-top: 0rem;
    margin-top: 83%; /* Push content below image */
  }

  h4 {
    color: var(--primary-color) !important;
  }
    h3 {
    color: var(--primary-color) !important;
  }

  footer .rera img {
  width: 6rem;
  height: 6rem;
}
.btn-download{
  display:inline-flex; align-items:center; gap:.35rem;
  padding:.2rem 0.75rem;
  font-weight:800; letter-spacing:.1px;
  box-shadow: 0 5px 20px rgba(0,0,0,.25);
}

.whatsd{
   
   
   display: none !important;
   
    
}
   .mob_call{
    display: block !important;
   
  }


  .main-btn {
  display: inline-block;
  padding:0.525rem 1.25rem;
  line-height: 1.25rem;
  background-color: var(--primary-color);
  border: 0.187rem solid var(--primary-color);
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: capitalize;
  box-shadow: 0px 2px 6px -1px rgb(0 0 0 / 19%);
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.white-btn {
  padding: 0.525rem 1.25rem;
  line-height: 20px;
  background-color: var(--white-color);
  border: 0.187rem solid var(--white-color);
  color: var(--text-color);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: capitalize;
  box-shadow: 0px 2px 8px -1px rgb(0 0 0 / 19%);
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.payment{
    font-size: 1rem;
    font-weight: 600;
    background-size: 200% 200%;
}
.amenity__img{ height: 200px; }

}

/* Mobile sizing */



@media (max-width: 330px) {
  .testimonial-section .carousel-item {
    padding: 13rem 3.125rem;
  }
}
