@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');

*{
    margin: 0px;
    padding: 0px;
    cursor: default;
    box-sizing: border-box;
    font-family: 'poppins';
}
:root{
    --primary-color : #1a1a1a;
    --gradient-color-black : linear-gradient(-45deg,#1a1a1a, #1a1a1a, #515151cc, #515151cc);
    --golden-dark-color : #a0713a;
    --black: #444444;
    --white: #fff;

}
a{
  text-decoration: none;
}
.overlay {
  position: absolute;
  background-color: #0000006d;
  width: 100%;
  height: 100%;
}
.overlay-2{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.755);
  z-index: 1;
}
body{
  background-color: #f2fcfd ;
  color: #000;
}
section
{
    overflow: hidden;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.banner {
  height: 600px;
  background-position: center;
  background-size: cover;
  position: relative;
}

/* Mobile View */
@media (max-width: 768px) {
  .banner {
    height: 650px; /* or any suitable value for mobile */
    background-position: top;
  }
}
/********************** button on mobile view  ********************/
#contact-button {
    position: fixed;
    bottom: 1px;
    z-index: 1000;
    width: 100%;
}

#contact-button {
    display: none;
    width: 100%;
    background-color: #a0713a;
    color: white;
}
#contact-button {
    position: fixed;
    bottom: 0px;
    z-index: 1000;
    width: 100%;
}

#contact-button p {
    display: none;
    width: 100%;
    height: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #a0713a;
    color: white;
}

@media only screen and (max-width: 768px) {
    #contact-button p {
        display: block;
    }

    .choose-sec .choose-card{
        font-size: 20px !important;
    }
}
/* Mobile */
@media only screen and (max-width: 768px) {
    #contact-button {
        display: block;
    }

    .modal-sm {
        max-width: 400px !important;
    }
}

.overlay-color {
  position: absolute;
  inset: 0; /* shorthand for top: 0; left: 0; right: 0; bottom: 0; */
  background-color: rgba(0, 0, 0, 0.4);
}

.text-white {
  color: #fff;
  text-shadow: 2px 2px #000;
}

.btn {
  background-color: var(--golden-dark-color);
  color: #fff; /* Use your secondary color */
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #f2e8db;
  color: var(--golden-dark-color);
}

.pulse-button {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
    box-shadow: 0 0 25px 25px #007bff00;
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

.gradient-text1{
  background: linear-gradient(to bottom, #e7d994, #a0713a);
  background-clip: text !important;
  color: transparent !important;
  letter-spacing: 2px;
  text-shadow: 1px 1px var(--golden-dark-color);
  font-weight: 900;
  font-size: 30px;
}
/***************************** cards ***********************/
.info-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  width: 48px;
  height: auto;
}

.info-label {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #222;
  font-weight: 500;
}

.info-value {
  font-size: 1rem;
  font-weight: 700;
  color: #1d1d1d;
}

@media (max-width: 576px) {
  .info-icon {
    width: 40px;
  }

  .info-value {
    font-size: 0.95rem;
  }
}
/******************** About *********************/
.about-majestique {
  position: relative;
  background: url('images/location/texture.png') center/cover no-repeat;
}

.about-majestique .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.755);
  z-index: 1;
}

.about-majestique * {
  position: relative;
  z-index: 2;
}

.gradient-text {
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(to bottom, #e7d994, #a0713a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.o2-location {
  font-weight: 500;
  color: var(--black);
}

/* Responsive heading font size for smaller screens */
@media (max-width: 576px) {
  .heading-mobile {
    font-size: 1.75rem;
  }

  .about-majestique p {
    padding: 0 1rem;
    font-size: 0.95rem;
  }

  .about-enquire-btn {
    margin-top: 1rem;
  }
}

/****************************** price section  **********************/
.section-heading {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(to right, #e7d994, #a0713a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem; /* Add margin for better spacing */
}

/* Price Card Styles */
.price-card-v2 {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  border: 1px solid #e5e5e5;
  margin-bottom: 2rem; /* Ensure spacing between cards */
}

.price-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* Header and Price Info */
.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.price-type {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.price-badge {
  background: #a0713a;
  color: white;
  font-size: 0.875rem;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 500;
}

/* Price Area and Footer */
.price-body {
  margin-bottom: 1.5rem;
}

.price-area {
  font-size: 1.05rem;
  color: #555;
}

.price-footer {
  text-align: center;
}

/* Mobile Optimized Price Section */
#price-mob {
  background-color: #f7f4f0;
  padding: 2rem 1rem;
}

.table-pricing {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
  overflow: hidden;
}

.table-pricing td {
  padding: 1rem;
  font-size: 1rem;
  color: #333;
  vertical-align: middle;
  text-align: center; /* Ensures text in cells are centered */
}

/* Specific styling for mobile elements */
.price-type {
  font-weight: 600;
  color: #000;
  font-size: 1.1rem;
}

.price-area {
  font-size: 0.95rem;
  color: #666;
}

.price-status {
  font-size: 1rem;
  color: #a0713a;
}

.price-row {
  border-bottom: 1px solid #eae4da;
}

.price-row:last-child {
  border-bottom: none;
}

/* Icon styling */
.mi {
  margin-right: 5px;
  color: #a0713a;
  font-weight: bold;
}

/* Media Queries */
@media (max-width: 768px) {
  .table-pricing td {
    padding: 1.2rem;
    font-size: 0.95rem;
  }

  #price-mob h1 {
    font-size: 1.5rem;
  }
}

/********************* floor/unit plan **************/
.complete-cost-img{
    position: relative;
    overflow: hidden;
    height: 247px;
}
.complete-cost-img .cost-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -100%;
    z-index: 111;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.5s ease-in-out;
}
.complete-cost-detail:hover .complete-cost-img .cost-overlay{
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}
.cost-overlay-btn{
    border: 0.1vw solid #e0e0e0;
    background: 0 0;
    border-radius: 0;
    position: absolute;
    top: -15%;
    left: 50%;
    z-index: 222;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease-in-out;
}
.complete-cost-detail:hover .cost-overlay-btn{
    padding: 5px;
    color: #e0e0e0;
    background: rgba(0, 0, 0, 0.7);
    top: 50%;
    transition: all 0.8s ease-in-out;
}
.cost-img-title{
    color: #fff;
    border: none;
    padding: 0.5vw;
    text-align: center;
    background-size: 400% 400%;
    text-shadow: 0 3px 6px var(--primary-color);
    background: var(--gradient-color-black);

}
.cost-img-title h5{
    font-size: 20px;
}
/*************************** aminities ***********************/
.image-container {
  position: relative;
  display: inline-block;
}

.overlay-text {
  position: absolute;
  bottom: 0px;
  right: 16px;
  background-color: black;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  border-radius: 3px;
  opacity: 0.8;
}
/*********************** location  *********************/
.location-advantage-container {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.location-bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  z-index: -1;
}

#accordion .card-header {
  background-color: transparent;
  border: none;
}

.card {
  border: none;
  background-color: unset;
}

.card-link {
  color: #2c3d55;
  font-size: 18px;
  font-family: 'Popins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #484343;
}


.card-link img {
  width: 17px;
  height: auto;
}

.card-link .plus-icon-img {
  display: none;
}

.card-link.collapsed .plus-icon-img {
  display: block;
}

.card-link.collapsed .minus-icon-img {
  display: none;
}

.card-body ul {
  list-style: none;
  margin-left: 10px;
}

.card-body ul li {
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 18px;
}

.card-body ul li .location-icon {
  width: 20px;
  height: auto;
  margin-right: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .location-advantage-container {
      padding-bottom: 50px;
      padding-top: 50px;
  }

  .location-bg-img {
      width: 70%;
  }

  .card-link {
      font-size: 16px;
  }

  .card-body ul li {
      font-size: 16px;
  }
  
  .location-section h1 {
      font-size: 1.8rem;
  }
}

/*************************** footer ***************************/
.sitefooter {
  background: var(--black);
  padding: 25px 0;
  color: var(--white);
}

.sitefooter .pera {
  margin-bottom: 10px;
  font-size: 11px;
}

.sitefooter .appbtn {
  padding: 8px 15px;
  border-radius: 8px 0;
  font-size: 14px;
  width: fit-content;
  display: flex;
  margin: 0 auto;
  margin-bottom: 15px;
}

.sitefooter .rera-text {
  margin-bottom: 8px;
  gap: 0 15px;
}

.sitefooter .rera_no {
  margin-top: 8px;
  gap: 15px;
}

.sitefooter .gtfdiv {
  gap: 0 15px;
  padding-bottom: 8px;
  font-size: 14px;
}

.sitefooter .gtfdiv a {
  color: #ffffff;
}

/********************* call button ********************/
/* .call-buton .cc-calto-action-ripple {
  z-index: 99999;
  position: fixed;
  right: 2rem;
  bottom: 5rem;
  background: #13e054;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
  animation: cc-calto-action-ripple 0.6s linear infinite;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;

}

.call-buton .cc-calto-action-ripple i {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 2.2rem;
}

@-webkit-keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

@keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
  }
} */
/*************** Aminities data ******************/
.amenity-card {
  background-color: #2e3538;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.amenity-card:hover {
  background: linear-gradient(360deg,rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.amenity-card img {
  height: 80px;
}
/************************ image-caption figcaption  ***********************/
.image-caption {
  position: relative;
  display: inline-block;
}

.image-caption figcaption {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color: white;
  text-align: center;
  padding: 5px 0; /* Add padding for better readability */
  font-size: 16px; /* Adjust font size as needed */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
/********************** gallery **********************/
/* Arrow button base */
#gallery .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}

/* Left and right placement */
#gallery .owl-carousel .owl-nav .owl-prev {
  left: 10px;
}
#gallery .owl-carousel .owl-nav .owl-next {
  right: 10px;
}

/* Hover effect */
#gallery .owl-carousel .owl-nav button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

