.button{
    color: #f5c359 !important;
    background-color: #0e1927 !important;
}
.dashboard {
  display: flex;
  min-height: 100vh;
}

.dashboard-app {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-top: 110px;
  transition: margin-left 0.3s ease;
}

/* Push content right on desktop to make space for sidebar */
@media (min-width: 992px) {
  .dashboard-app {
    margin-left: 250px;
  }
  .dashboard-nav.offcanvas {
    transform: none !important;
    visibility: visible !important;
  }
}

/* ========== SIDEBAR ========== */
.dashboard-nav {
  background-color: #0c1b2a !important;
  width: 250px !important;
  min-height: 100vh;
  margin-top: 90px;
}

/* Sidebar links */
.dashboard-nav-item {
  display: block;
  color: #fab536;
  padding: 10px 15px;
  text-decoration: none;
  transition: 0.3s;
}

.dashboard-nav-item:hover,
.dashboard-nav-item.active {
  background-color: #162c46;
  border-radius: 5px;
  color: #f1c343;
}

/* Mobile behavior */
@media (max-width: 991px) {
  .dashboard-nav {
    transform: translateX(-100%);
  }

  .dashboard-nav.mobile-show {
    transform: translateX(0);
  }

  .dashboard-app {
    margin-left: 0;
  }
}


/* ========== CONTENT STYLES ========== */
.dashboard-content {
  flex-grow: 2;
  padding: 25px;
}

@media (max-width: 768px) {
  .dashboard-content {
    padding: 15px;
  }
}

/* Overview Card */
.overview {
  background: #f8f9fa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
}

.divino {
  background-color: #0e1927;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
}

/* Headings */
#overview h1,
#overview h2 {
  color: #2c3e50;
}

/* ========== ELITE BUTTON ========== */
.elite {
  background-color: #0e1927;
  width: fit-content;
  padding: 3px 12px;
  color: #f1c343;
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: 0.3s;
}

#overview .elite:hover {
  background: #15284b;
}

#overview .elite a {
  color: rgb(245, 191, 75);
  text-decoration: none;
}


#amenitiesCarousel .carousel-item img {
    height: 50vh;
    /* Screen ka 50% height */
    object-fit: cover;
    /* Image crop hoke bhi acchi lagegi */
}

.amenities {
    background-color: rgb(215, 224, 236);
    box-shadow: 10px 8px 20px rgba(0, 0, 0, 0.1);
}

.amenity-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    font-size: 40px;
    color: #1b314d;
    margin-bottom: 15px;
}

.amenity-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.amenity-desc {
    font-size: 0.95rem;
    color: #555;
}

.price-section {
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.price-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: rgb(102, 133, 179);
}

.price-card {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card h5 {
    font-weight: bold;
    margin-bottom: 20px;
    border: 2px solid rgb(102, 133, 179);
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}

.price-card p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.price-card .btn {
    background-color: #0e1927;
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
}


.gallery-section {
    background: rgb(228, 235, 245);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 40px 0;
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0e1927;
    font-weight: 600;
}

.gallery-img {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/* Mobile (max 576px) */
@media (max-width: 576px) {
  .gallery-img img {
    height: 170px; /* square ke liye approx width ke barabar */
    aspect-ratio: 1 / 1; /* perfect square maintain karega */
    object-fit: cover;
  }
}


.location-section {
    position: relative;
    height: 80vh;
}

.map-frame {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.map-frame iframe {
    width: 79vw;
    height: 90vh;
    border: 0;
}
.map-btn {
  display: none;
}
.btn-map {
  display: inline-block;
  padding: 12px 20px;
  background: #0e1927;
  color: #f3b35f;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn-map:hover {
  background: #0e1927;
}
/* Mobile version */
@media (max-width: 576px) {
  .map-frame {
    display: none;
  }
  .map-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  .location-overlay {
    position: static;
    max-width: 100%;
    /* margin-bottom: 40px; */
  }
}

.location-overlay {
    position: absolute;
    top: 70%;
    right: 5%;
    transform: translateY(-50%);
    background: rgba(14, 15, 26, 0.95);
    color: #fdbb58;
    padding: 25px;
    border-radius: 15px;
    max-width: 400px;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.location-overlay h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.location-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.location-overlay hr {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin: 20px 0;
}

/* lightbox css */

.floor-card {
    border-radius: 10px;
    padding: 30px 20px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, 0.1);
}

.floor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.floor-card h5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.floor-card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.floor-card button {
    padding: 10px;
    font-size: 1rem;
    font-weight: 800;
    background-color: #0e1927;
}

.modal-body img {
    width: 80%;
    border-radius: 10px;
    margin-left: 160px;
}

/* testimonial css */
.sed_testimonial_section {
    /* padding:6rem 0rem; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* 
.testi_person_img_icon{
  margin-top: 2rem;
} */

.testi_person_img_icon ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: right;
}

.testi_person_img_icon ul li {
    display: inline-block;
    border: 3px solid transparent;
    border-radius: 11px;
    cursor: pointer;
}

.testi_person_img_icon ul li img {
    width: 66px;
    height: 66px;
    object-fit: cover;
    border-radius: 8px;
}

.change_contet_test:nth-child(1) {
    display: block;
}

.change_contet_test {
    display: none;
}


.test_user_review_content h2 {
    font-size: 24px;
    font-weight: 600;
    text-align: right;
    color: #0e1927;
    text-transform: uppercase;
}

.test_user_review_content p {
    font-size: 15px;
    text-align: right;
    color: #000000;
    margin: 0.1rem 0;
    /* Reduce vertical gap */
    line-height: 1.5;
    /* Controls line spacing */
}

.bottom_line_yello {
    border-bottom: 2px solid rgb(14, 16, 26);
    padding-bottom: 2rem;
}

.img_peroson_fullsize {
    text-align: right;
}

.active_user {
    position: relative;
    border: 3px solid rgb(14, 16, 26) !important;
    border-radius: 11px;
}

.active_user:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #0e1927;
    left: 0;
    right: 0;
    margin: 0px auto;
    border-radius: 50%;
    bottom: -8px;
}

.p_b_80 {
    padding-bottom: 80px;
}

.sed_testimonial_section {
    padding-bottom: 4rem;
}

.img_peroson_fullsize {
    position: relative;
}

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card img {
    object-fit: cover;
    height: 200px;
    /* Set a fixed image height for consistency */
}

.project-card .card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    /* Push card body to bottom */
}