.button{
  background-color: #14264e !important;
  color: #ecb44b !important;
}
.text-color{
  color: #e9a43c;
}
.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;
}

@media (max-width: 767px) {

    #overview h1,
    #overview h2 {
        text-align: center;
    }

    .overview p {
        font-size: 14px;
    }

    .exploreRealty {
        text-align: center;
    }

    .exploreRealty a {
        font-size: 14px;
    }
}


@media (max-width: 992px) {
    .dashboard-nav header .menu-toggle {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}
/* sidenav css end  */

/* LOCATION */
.location-section {
    position: relative;
    margin-top: 40px;
}

.map-frame iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
}

.location-overlay {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: rgba(75, 59, 79, 0.95);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 350px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.btn-map {
    display: none;
    /* hidden on desktop */
}

/* ✅ Mobile styles */
@media (max-width: 768px) {
    .location-overlay {
        position: static;
        /* अब map के नीचे आ जाएगी */
        transform: none;
        max-width: 100%;
        margin-top: 15px;
        padding: 15px;
        font-size: 0.9rem;
    }

    .map-frame {
        display: none;
    }

    .btn-map {
        display: inline-block;
        /* दिखेगा mobile पर */
        text-align: center;
        margin-top: 20px;
        padding: 12px 20px;
        background: #4b3b4f;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        border-radius: 8px;
        transition: background 0.3s ease;
    }

    .btn-map:hover {
        background: #322634;
    }

    .location-overlay h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .location-overlay p {
        font-size: 0.85rem;
        margin-bottom: 6px;
        line-height: 1.4;
    }
}

/* new css */
.our-services {
  margin-top:  50px;
}
.flip-container {
  -webkit-perspective: 1000;
  margin: 0 auto 60px auto;
  width: 320px;
  height: 200px;
  border-radius: 15px;
  cursor:pointer;
}

.flip-container:hover .flipper {
  -webkit-transform: rotateY(180deg);
  cursor:pointer;
}
.flip-container.hover .flipper {
  -webkit-transform: rotateY(180deg);
  cursor:pointer;
}

.front {
  width: 320px;
  height: 200px;
  border-radius: 15px;
  -webkit-backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 12px;
  border: 10px solid #213657;
  box-shadow: 0 9px 22px rgba(0,0,0,0.8);
}


.back img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.back {
  width: 320px;
  height: 200px;
  border-radius: 15px;
  -webkit-backface-visibility: hidden;
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  -webkit-transform: rotateY(180deg);
  background-color: #213657;
  box-shadow: 0 9px 22px rgba(0,0,0,0.8);
}

.back p {
  font-size: 12px;
  color: black ;
  /* margin-right:5px; */
}

.flipper {
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  position: relative;
}

/* about css */
.aboutus-section {
    padding: 90px 0;
}
.aboutus-title {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 32px;
    margin: 0 0 39px;
    padding: 0 0 11px;
    position: relative;
    text-transform: uppercase;
    color: #000;
}
.aboutus-title::after {
    background: #fdb801 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 54px;
}
.aboutus-text {
    color: #606060;
    font-size: 13px;
    line-height: 22px;
    margin: 0 0 35px;
}

a:hover, a:active {
    color: #ffb901;
    text-decoration: none;
    outline: 0;
}
.aboutus-more {
    border: 1px solid #fdb801;
    border-radius: 25px;
    color: #fdb801;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 7px 20px;
    text-transform: uppercase;
}
.feature .feature-box .iconset {
    background: #fff none repeat scroll 0 0;
    float: left;
    position: relative;
    width: 18%;
}
.feature .feature-box .iconset::after {
    background: #fdb801 none repeat scroll 0 0;
    content: "";
    height: 150%;
    left: 43%;
    position: absolute;
    top: 100%;
    width: 1px;
}

.feature .feature-box .feature-content h4 {
    color: #0f0f0f;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 0 0 5px;
}


.feature .feature-box .feature-content {
    float: left;
    padding-left: 28px;
    width: 78%;
}
.feature .feature-box .feature-content h4 {
    color: #0f0f0f;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 0 0 5px;
}
.feature .feature-box .feature-content p {
    color: #606060;
    font-size: 13px;
    line-height: 22px;
}
.icon {
    color : #f4b841;
    padding:0px;
    font-size:40px;
    border: 1px solid #fdb801;
    border-radius: 100px;
    color: #fdb801;
    font-size: 28px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    width: 70px;
}

/* Price Section */
.price-card {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-5px);
}
 h5{
  font-weight: bold;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
 }

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

.price-card .btn {
    background-color: #121E31;
    color: #f1a83a;
    border-radius: 50px;
    padding: 10px 25px;
    width: 100%;
}
.price-card .btn:hover{
  color: #f4b841;
  background-color: #1f3250;
}
/* Rental Section - Light Luxury Theme */
.rental-section {
  background: #f9f9fb;
  color: #333;
  padding: 60px 20px;
}

.rental-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.rental-section .section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #c89b3c; /* golden accent */
  margin-bottom: 40px;
}

.rental-box {
  background: #fff;
  border-left: 4px solid #c89b3c;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.rental-box:hover {
  background: #fffaf0;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.rental-box h4 {
  color: #c89b3c;
  font-size: 18px;
  margin-bottom: 12px;
}

.rental-box ul {
  margin: 0;
  padding-left: 18px;
}

.rental-box ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
}

.rental-box p {
  font-size: 15px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .rental-section .section-title {
    font-size: 24px;
  }
}


/* Luxury Hospital Section */
.hospital-section {
  background: #0c0f1c;
  color: #e6e6e6;
  padding: 70px 20px;
}

.hospital-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #f5c76a;
  margin-bottom: 20px;
}

.subtitle {
  text-align: center;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #bbb;
}

.hospital-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.hospital-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 199, 106, 0.3);
  border-radius: 12px;
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.hospital-box:hover {
  background: rgba(245, 199, 106, 0.08);
  transform: translateY(-5px);
}

.hospital-box h4 {
  color: #f5c76a;
  font-size: 18px;
  margin-bottom: 15px;
}

.hospital-box p,
.hospital-box li {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
}

.hospital-box ul {
  padding-left: 20px;
}

.hospital-box .benefits li {
  margin-bottom: 10px;
}

.hospital-box strong {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hospital-content {
    grid-template-columns: 1fr;
  }
}
