.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  */
/* ==================carousel css================ */


	@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.bg-offset-hero::after {
	position: absolute;
	content: '';
	width: 75%;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
	background-color: #0e1927;
}

.quote_ {
	opacity: 0.1;
}

@media (max-width: 767.98px) {
	.bg-offset-hero::after {
		width: 100%;
	}
}

/* Global card style */
.card {
  border: none !important; /* remove border */
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-weight: 600;
  font-size: 1.1rem;
}
.price {
  color: #198754; /* green for pricing */
  font-weight: 500;
  font-size: 1.05rem;
}
.note-card {
  background: #f8f9fa;
  border-left: 4px solid #ffc107;
}

.map{
    height: 90vh;
}



.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 #054743;
  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 css */


.heading {
    text-align: center;
    font-size: 2em;
    letter-spacing: 1px;
    padding-bottom: 40px;
    color: #333;
}

.gallery-image {
    gap: 10px;
}

.img-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.transparent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
    transition: background-color 0.3s ease;
}

.img-box:hover img {
    transform: scale(1.1);
}

.img-box:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.5);
}

.img-box:hover {
    cursor: pointer;
}
