* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}
p, li{
  font-family: Lato, sans-serif;
}
body{
    overflow-x: hidden;
}

.banner {
  background-image: url("./images/new-banner.jpg");
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.banners {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0px 9rem;
  text-align: center;
  background: #00000096;
}

.banners h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
}
.banners p {
  font-family: Lato sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.btn {
  background: #da8e43;
}
.btn:hover {
  background: #f5ac62;
}
.btn a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-family: "EB Garamond" serif;
}
.snapshot {
  margin: 2% 0;
  padding: 2% 0;
  
}
.snapshot1 {

    align-items: center;
}
.snapshot1 h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.4em;
  color: #4b2b1d;
  font-size: 28px;
}
.snapshot2{
    padding: 3rem;
}
.snapshot-list li{
    padding: 12px 0;
}
.benefits {
  margin: 2% 0;
  padding: 2% 0;
}
.benefits h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.4em;
  color: #4b2b1d;
  font-size: 28px;
  border-bottom: 4px solid #d4b48d;
  display: inline-block;
}
.benefits h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.4em;
  color: #f3d8ca;
    background: #7a4b36;
    width: fit-content;
    font-size: 20px;
    padding: 2px 12px;
    border-radius: 12px;
}
.benefits ul li{
    padding: 12px 0;
}
.filter {
  margin: 2% 0;
  padding: 2% 0;
}
/* Filter bar */
.filters {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.filters select {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: white;
  width: 25%;
}

/* Card layout */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.card p {
  margin: 5px 0;
  font-size: 14px;
  color: #555;
  font-family: Lato, sans-serif;
}
.card-img, .card-img-top{
    height: 35vh!important;
}
.price {
  margin: 2% 0;
  padding: 2% 0;
}
.price h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.4em;
  color: #4b2b1d;
  font-size: 28px;
  text-align: center;
}
.flats {
  margin: 2% 0;
  padding: 2% 0;
 background: #f4e0bc;
}
.flats h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.4em;
  color: #4b2b1d;
  font-size: 28px;
  text-align: center;
}
.flats h3 {  
 font-family: Lato, sans-serif;
    font-weight: 400 !important;
    line-height: 1.4em;
    font-size: 16px;
  text-align: center;
  color: #000;
}
.tabs-section {
  padding: 12px;
  background: #eef2f5;
  border-radius: 1rem;
}

.tabs-container {
  margin: 0 auto;
  background: #ffffffdd;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Tab nav */
.tabs-nav {
  display: flex;
  background: #4b2e1e;
  background: linear-gradient(90deg, #4b2e1e, #4b2e1e);
  list-style: none;
  margin: 0;
  padding: 0;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.tab svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.tab.active {
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

/* Content panes */
.tabs-content {
  padding: 2rem;
  background-color: #fff;
}

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Typography */
.tab-pane h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.4em;
  color: #4b2b1d;
  font-size: 28px;
  text-align: center;
}

.tab-pane p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: Lato, sans-serif;
}
.faq {
  margin: 2% 0;
  padding: 2% 0;
}
.faq h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.4em;
  color: #4b2b1d;
  font-size: 28px;
  text-align: center;
}
.accordion-button {
  font-family: Lato sans-serif;
  color: #4b2b1d;
  font-size: 20px;
  font-weight: 500 !important;
  background-color: none !important;
}
.accordion-button:not(.collapsed) {
  font-family: Lato sans-serif;
  color: #4b2b1d;
  font-size: 20px;
  font-weight: 400;
  background: #6f584b !important;
  color: #fff !important;
  border: none !important;
}
.accordion-body {
  font-family: Lato sans-serif;
  color: #383838;
  font-size: 18px;
  font-weight: 300;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  border: 0px 0px 1px 0px solid #000 !important;
}
.cta {
  margin: 2% 0 0 0;
  padding: 2% 0;
  background-color: #f4e0bc;
}
.cta h2{
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.4em;
    color: #4b2b1d;
    font-size: 28px;
    text-align: center;
}
.contact-box {
  background-color: #c89d63;
  border-radius: 20px;
  padding: 30px;
  color: #fff;
}
.contact-box h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600 !important;
  font-style: normal;
  line-height: 1.4em;
  color: #4b2b1d;
}
.contact-box input,
.contact-box select,
.contact-box textarea {
  border-radius: 8px;
  border: none;
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
}
.contact-box button {
  background-color: #42210b;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 10px;
}
.copyright {
  background-color: #c19145;
  padding: 1% 0;
}
.copyright p {
  text-align: center;
  color: #fff;
  font-size: 20px;
  justify-content: center;
  display: block;
  align-items: center;
  margin: auto;
  font-family: Lato, sans-serif;
}
.choose3 {
    background-color: #F3E0BC;
    padding: 4% 0 0%;
}
.choose3 h1{
   font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.4em;
    color: #4b2b1d;
    font-size: 28px;
}
.choose3 h2{
   font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.4em;
    color: #4b2b1d;
    font-size: 28px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #4b2e1e;
    padding-bottom: 9px;
    border-radius: 6px;
}
.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 3px solid #4e2e1f;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    margin-right: 14px;
    color: #4b2b1d;
}
.pride-text p {
    color: #fff;
    padding: 10px;
    width: 72%;
    margin: 0 auto 4rem;
    font-size: 1.4rem;
    text-align: center;
}
.tab-content>.active {
    display: block;
}
.browb {
    background-color: #4b2e1e !important;
}
.amenity-card {
    background-color: #fffaf3;
    border-radius: 20px;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, .2);
    padding: 17% 30px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: .3s;
    height: 250px;
}
.amenity-icon {
    font-size: clamp(30px, 5vw, 40px);
    color: #4b2e1e;
    margin-bottom: 15px;
    height: 103px;
    margin-top: -13%;
}
.amenity-title {
    color: #4b2e1e;
    font-size: 22px;
    font-weight: 600;
    padding-top: 4%;
}
.amenity-icon img {
    width: 44%;
    height: auto;
}
.location{
    margin: 2% 0 0 0;
  padding: 2% 0;
}

.location h2 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.4em;
    color: #4b2b1d;
    font-size: 28px;
}
.location h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.4em;
    color: #4b2b1d;
    font-size: 20px;
}

.location-box {
    background: #f3eeee;  
    text-align: center;
    padding: 20px;
    justify-content: center;
    margin: auto;
    align-items: center;
    display: inline-block;
    border-radius: 8px;
    height: auto;
    margin: 12px;
    width: 22%;
}
.location-box i{
    color: #4b2b1d;
    font-size: 4rem;
}
.location-box h4{
    font-size: 18px;
    margin-top: 18px;
    font-weight: 600;
}
.location-box p{
    font-size: 16px;
    
}
.location-box img{
  width: 50px;
}
.flats-cta {
    align-items: center;
    margin: auto;
    justify-content: center;
    display: flex;
    height: 17px;
    padding: 20px 48px;
    margin-top: 4%;
    background: #4b2e1e;
    border-radius: 4px;
    border: none;
}
.flats-cta a{
  font-size: 20px;
  text-decoration: none;
  color: #fff;
}
.payment{
   margin: 2% 0 0 0;
  padding: 2% 0;
}
.payment h2{
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.4em;
    color: #4b2b1d;
    font-size: 28px; 
}
 
.trust{ 
      margin: 2% 0 0 0;
    padding: 2% 0;
    background-color: #f4e0bc;
}
.trust h2 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.4em;
    color: #4b2b1d;
    font-size: 28px;
    text-align: center;
}
.trust h3  {
    font-family: Lato, sans-serif;
    font-weight: 400 !important;
    line-height: 1.4em;
    font-size: 16px;
    text-align: center;
    color: #000;
}


.trust1{
    background: #4b2e1e;
    text-align: center;
    padding: 20px;
    justify-content: center;
    margin: auto;
    align-items: center;
    display: inline-block;
    border-radius: 8px;
    height: auto;
    margin: 12px;
    width: 22%;
    color: #fff;
}
.trust1 img {
    width: 107px;
}
.trust1 h4 {
    font-size: 18px;
    margin-top: 18px;
    font-weight: 600;
}
.trust1 p {
    font-size: 16px;
}
.custom-col {
  flex: 0 0 12.5%; /* 1.5 / 12 = 12.5% */
  max-width: 12.5%;
}





.footer{
    background-color: #4b2e1e;
    padding: 40px 20px;
    background-image: url(../images/footer-bg.png);
    background-size: cover;
    background-position: center;
}
.footer-list {
    display: grid
;
    grid-template-columns: repeat(5, 15% 15% 15% 25% 30%);
}
.quick-link{
    padding-top: 0rem;
}

.quick-link h4{
    font-family: "Lato", sans-serif;
    color: #f4e0bc;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
}
.quick-link ul{
    list-style-type: none;
    padding: 0;
}

.quick-link ul li{
    padding-bottom: .6rem;
}
.quick-link ul li a{
        color: #f4e0bc;
    font-size: 17px;
       font-family: "Lato", sans-serif;
}
.social {
    text-align: center;
    padding-top: 5rem;
}

.social p{
      font-family: "Lato", sans-serif;
      color: #f4e0bc;
      font-size: 17px;
}
.social a{
    background: #f4e0bc;
    padding: .3rem;
    border-radius: 10rem;
    width: 31px;
    display: inline-block;
    height: 31px;
    text-align: center;
    color: #222;
}

.contact-info-box {
    display: flex
;
}
.contact-icon{
    margin-right: .8rem;
}
.contact-icon i{
        color: #f4e0bc;
    font-size: 20px;  
}
.contact-text{


}
.contact-text p{
    color: #f4e0bc;
    font-size: 17px;
    font-family: "Lato", sans-serif;
}
.contact-text p a{
    color: #f4e0bc;
    font-size: 17px;
    font-family: "Lato", sans-serif;
}
.copy {
    background: #c19145;
    padding: 13px;
}

.copy p{
    color: #fff;
    margin-bottom: 0;
}
.contact-page {
    background-color: #f4e0bc;
    padding: 60px 0 ;
}
.Privacy-text{

}
.Privacy-text h2{
        font-size: 2.rem;
        color: #4b2e1e;
}

.Privacy-text h2{
        font-size: 2.rem;
        color: #4b2e1e;
}

.Privacy-text p a{
  color: #4b2e1e;
    font-weight: 600;
    font-size: 1.2rem;
}

.main-contact-text{
margin-bottom: 5rem;
}

.main-contact-text h2{
    font-size: 5rem;
    color: #000;
}
.main-contact-text p{
    font-size: 1.9rem;
}
.message-box {
    background: #c19145;
    border-radius: 2rem;
    padding: 3rem 2rem;
}


.footer-list a{
    text-decoration: none;
}

.book{
    width: 18%;
    margin: auto;
    text-align: center;
    display: flex;
}
.book a {
    background: #4f94df00;
    padding: 6px 20px;
    border-radius: 56px;
    font-weight: 400;
    border: 1px solid #da8e43;
    margin-left: 12px;
    font-size: 17px;
}
.book a:hover {
    background: #da8e43;
    border: 1px solid #da8e43;
} 
.none2{
    display: none;
}
.cus-contact {
    rotate: -90deg;
    position: fixed;
    right: -61px;
    top: 51%;
    z-index: 999;
}
.cus-contact a {
    background-color: #4b2e1e;
    padding: 10px 17px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: Lato;
    text-decoration: none;
}
.banner-text a, .cus-btn, .cus-contact a
 {
    text-transform: uppercase;
    text-decoration: none;
}
.quick-link small {
    color: #f4e0bc;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 2.2;
}
@media (min-width:700px) and (max-width:3000px) {
    .none-mobile, .none2 {
    display: none;
}
}

.highlight-box span{
    color: #f3d8ca;
    font-weight: 700;
    background: #7a4b36;
    font-size: 22px;
    padding: 2px 12px;
    border-radius: 12px;
}

.highlight-box ul li{
    font-size: 22px;
    color: #3a2d1f;
    font-weight: 600;
}

.main-heading {
    font-size: 39px;
    color: #5a3b24;
    margin: 0 0 22px;
    border-bottom: 4px solid #d4b48d;
    display: inline-block;
    font-weight: 600;
    line-height: 59px;
    font-family: "Playfair Display", serif;
}
body {
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #000;
    line-height: 24px;
}
html {
  scroll-behavior: smooth!important;
}
button:focus {
    outline: 0;
}
.fw-bold {
    font-family: 'Playfair Display'}
body {
    color: #000;
}
.arrow-btn, .slider-arrow {
    transform: translateY(-50%);
}
.box {
    overflow: hidden;
}
.arrow-btn {
    position: absolute;
    top: 50%;
    background: 0 0;
    border: none;
    font-size: 2rem;
    color: #b28d56;
    cursor: pointer;
    z-index: 10;
}
.arrow-left {
    left: 15px;
}
.arrow-right {
    right: 15px;
}
.slider-content {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    background-color: #fff!important;
    padding: 20px;
    border-radius: 20px;
}
.slider-content.active {
    display: flex;
}
body {
    padding: 0;
    overflow-x: hidden;
}
h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600!important;
    font-style: normal;
    line-height: 1.4em;
    color: #4b2e1e;
}
.fw-bold {
    font-weight: 400!important;
    font-size: 53px;
}
.choose1 {
    background-color: #f4e0bc;
    padding: 4% 0 6%}
.container {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
@media screen and (max-width:1170px) {
    .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
}
@media (max-width:768px) {
.floor-info {
    color: #5a3d1e;
    width: 100%}
.align-items-center, .floor-image {
    width: 100%}
.slider-arrow.right {
        top: -46.5%!important;
    right: -48%!important;
}
.fw-bold {
    font-weight: 400!important;
    font-family: 'Playfair Display';
    font-size: 27px!important;
}
.slider-arrow.left {
   left: -48%!important;
}
 
.slider-container {
    width: 100%!important;
    height: auto;
    float: none;
}
}
@media screen and (max-width:768px) {
    .container {
    flex-direction: column;
    align-items: center;
}
}
ul li::marker {
    color: #bc8d4a;
}
.slider-container {
    text-align: center; 
}
.slider-arrow.left {
    top: 50%;
    left: -51%;
}
.slider-arrow.right {
   top: -44%;
    right: -51%;
}
@media (max-width:767px) {
.slider-arrow {
    font-size: 1.5rem;
    padding: 5px 10px;
}
.choose1 {
    background-color: #f4e0bc;
    padding: 4% 0 6%}
}
.floor-info {
    color: #5a3d1e;
}
.slider-arrow {
    position: relative;
    top: 50%;
    background-color: #5a3d1e;
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
}
.floor-image {
    width: 100%;
    border-radius: 10px;
}
@media (max-width:768px) {
    .slider-content {
    flex-direction: column;
    align-items: center;
}
.container {
    flex-direction: column;
    flex-direction: column;
    align-items: center;
}
}
.box {
    font-weight: 700;
}
@media (max-width:767px) {
.slider-arrow {
    font-size: 1.5rem;
    padding: 5px 10px;
}
}.box-label, .box-value {
    padding: 15px;
    width: 50%}
.table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}
.box {
    display: flex;
    border: 2px solid #5c3a1a;
    border-radius: 8px;
    background-color: #fff;
}
.box-label {
    background-color: #5c3a1a;
    color: #fff;
    font-size: 18px;
    text-align: left;
}
.box-value {
    font-size: 22px;
    color: #333;
    background-color: #fdf9f4;
    text-align: center;
}
@media screen and (max-width:768px) {
.box, .layout {
    flex-direction: column;
}
.left, .right {
    flex: 1 1 100%}
.box-label, .box-value {
    width: 100%;
    text-align: center;
}
.box-value {
    padding: 6px;
    font-size: 18px;
}

}