@import url('https://db.onlinewebfonts.com/c/5ebc09361aef4dbfa14ad8492b8cca11?family=SangBleu+Sunrise');

@import url('https://fonts.googleapis.com/css2?family=Allura&family=IBM+Plex+Sans:wght@100;400&family=Open+Sans:wght@300&family=Poppins&family=Roboto+Serif:opsz@8..144&family=Satisfy&family=Tangerine&family=Urbanist:wght@100;400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gradient: linear-gradient(to right, #ff7e5f, #feb47b);
  --glass-bg: rgba(255, 255, 255, 0.2);
  --border: 1px solid rgba(255, 255, 255, 0.1);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header.header-section {
  position: relative;
  z-index: 9999;
  width: 100%;
  margin-top: 75px;
}

.hero_banner {
  position: relative;
  color: #fff;
}
section.hero_banner
 {
    position: relative;
    background-image: url(/investors/wp-content/uploads/2025/05/banner-bng.webp);
    background-position: center 65%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6% 0 17% 0;
    color: #fff;
    z-index: 1;
    margin-top: 3%;
}

section.hero_banner::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 18%);
}

.hero_banner .banner-section {
  padding: 20px 0px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.banner-section {
  max-width: 440px;
  margin-left: auto;
  text-align: left;
  margin-bottom: 20px;
}

.features-list li {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
  padding-left: 0px;
  list-style: disc;
  font-weight: 800;
  font-family: Arial, Helvetica, sans-serif;
}

.banner-section1 {
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 700px;
  margin-left: auto;
  text-align: left;
  margin-bottom: 16px;
  position: relative;
}


.hero_banner h1 {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Arial", Helvetica, sans-serif;
}
.hero_banner h2 {
  font-size: 43px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Arial", Helvetica, sans-serif;
}

.disclaimer {
   font-size: 16px;
  color: #fff;
  margin-top: 10px;
  font-weight: 400;
  display: flex;
  justify-content: end;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
}

@media (max-width: 768px) {
  header.header-section {
        margin-top: 80px;
        padding: 0 0;
    }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0px;
  backdrop-filter: blur(12px);
  background: rgb(58 83 107 / 29%);
  border-bottom: var(--border);
  z-index: 9999 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
}

.navbar.scrolled {
  padding: 0.8rem 5%;
  background: rgba(10, 10, 10, 0.95);
}

nav.navbar {
  background: rgb(24 67 107);
  background: linear-gradient(to right, #fdfdfd, rgb(24 67 107));
}

.logo img {
  width: 100%;
  height: auto;
  max-width: 150px;
}

.logo {
  display: flex;
  width: 15%;
  column-gap: 15px;
  align-items: center;
}
.nav-links a {
  color: rgb(255 255 255);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f3c060;
  background-size: 300%;
  transition: width 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: #f3c060;
  background-size: 300%;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #f3c060;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
  width: 100%;
  animation: gradient 8s linear infinite;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
span.projected {
    font-size: 12px;
}
.mobile-nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-toggle .bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.4s ease;
}

.mobile-nav-toggle .bar:nth-child(1) {
  top: 14px;
}

.mobile-nav-toggle .bar:nth-child(2) {
  top: 19px;
}

.mobile-nav-toggle .bar:nth-child(3) {
  top: 24px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (max-width:999px) {
  a.btn.btn-primary.property_inspection {
    font-size: 12px;
  }
 
  .contact-form-head {
    background: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    backdrop-filter: blur(10px);
  }

  .nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03));
    pointer-events: none;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links a:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-links a:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-links a:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-links a:nth-child(5) {
    transition-delay: 0.5s;
  }

  .mobile-nav-toggle {
    display: block !important;
  }

  .mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translate(-50%, 5px) rotate(45deg);
    width: 24px;
  }

  .mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translate(-50%, -5px) rotate(-45deg);
    width: 24px;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}


@media (max-width: 768px) {
  .hero_banner .banner-section {
    max-width: 100%;
    padding: 20px 0px 0px;
    margin-bottom: 30px;
  }

  .hero_banner h2 {
    font-size: 28px;
  }

  .hero_banner h3 {
    font-size: 22px;
  }

  .hero_banner h4 {
    font-size: 18px;
  }
}

.features-list {
  list-style-type: none;
  margin: 20px 0;
  padding-left: 0px;
  font-size: 1.2rem;
}

.banner-content p {
  font-size: 1rem;
  margin-top: 20px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-list {
    font-size: 1rem;
    margin: 0;
  }
}

.features-list li::marker {
  font-size: 20px;
}

.about-section {
  position: relative;
  padding: 50px 0px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 40px;
}

.sec-title h3 {
  font-size: 25px;
  font-family: "Arial", Helvetica, sans-serif;
  line-height: 32px;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-top: 50px;
  padding-right: 100px;
}

.about-section .content-column .text {
  position: relative;
  color: #777777;
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 10px;
  font-family: "Arial", Helvetica, sans-serif;
}

.about-section .content-column .email {
  position: relative;
  color: #252525;
  font-weight: 700;
  margin-bottom: 50px;
}

.about-section .image-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .image-column .inner-column {
  position: relative;
  padding: 50px 30px 0px 0px;
}

.about-section .image-column .inner-column:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  left: 40px;
  bottom: 100px;
  z-index: -1;
  border: 2px solid #d7a449;
}

.about-section .image-column .inner-column .image {
  position: relative;
}

.about-section .image-column .inner-column .image:before {
  position: absolute;
  content: '';
  left: -50px;
  bottom: -50px;
  width: 299px;
  height: 299px;
}

.about-section .image-column .inner-column .image img {
  position: relative;
  width: 100%;
  display: block;
}

.about-section .image-column .inner-column .image .overlay-box {
  position: absolute;
  left: 40px;
  bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
  position: relative;
  color: #252525;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 110px;
  height: 110px;
  color: #d7a449;
  font-size: 68px;
  font-weight: 700;
  line-height: 105px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #000000;
}

.about-section .btn-style-three {
  position: relative;
  line-height: 24px;
  color: #252525;
  font-size: 15px;
  font-weight: 700;
  background: none;
  display: inline-block;
  padding: 11px 40px;
  background-color: #ffffff;
  text-transform: capitalize;
  border: 2px solid #d7a449;
  font-family: "Arial", Helvetica, sans-serif;
}

.sec-title2 {
  color: #fff;
}

.sec-title {
  position: relative;
  padding-bottom: 0px;
}

.sec-title .title {
  position: relative;
  color: #d7a449;
  font-size: 20px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
  font-family: Arial, Helvetica, sans-serif;
}



/*======================================
    Faq CSS
========================================*/
.faq {
  padding-bottom: 50px;
  background-color: #efecec;
  padding-top: 50px;
  position: relative;
}
.section-title h2 {
  font-weight: 700;
  font-size: 35px;
  font-weight: 600;
  color: #623895;
}

.section-title p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #757065;
  margin: 18px 0 20px;
  font-family: "Arial", Helvetica, sans-serif;
  font-style: normal !important;
}

.section-title h3 {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
  color: #bc2834;
  text-transform: capitalize;
}

.section-title h2.wow.fadeInUp {
  font-weight: 700;
  font-size: 25px;
  font-weight: 600;
  color: #623895;
}
.table-bordered td, .table-bordered th {
  font-size: 14px;
  padding: 10px 5px;
  width: 20%;
}
.accordion-button:not(.collapsed) i::before {
  content: "\f068";
  font-family: 'FontAwesome';
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq .section-title {
    margin-bottom: 40px;
  }

  .contact-sec .contact-block {
    padding: clamp(23px, 1.667vw, 51px);
    border-radius: clamp(18px, 1.25vw, 48px);
    border: 0.5px solid #f1f2f7;
    height: 100%;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  }

  .section-title {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 0px;
    position: relati  }

  div#accordionExample2 {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq {
    padding-bottom: 40px;
  }
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding-right: 40px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.accordion-item .accordion-button {
  border-radius: 4px !important;
  font-size: 17px;
  font-weight: 500;
  width: 100%;
  display: block;
  overflow: hidden;
  border: none;
  padding: 10px 10px;
  padding-right: 33px;
  background-color: #fff;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  font-family: "Arial", Helvetica, sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button {
    padding: 18px 20px;
    padding-right: 40px;
  }
}

.accordion-item .accordion-button .title {
  padding-left: 30px;
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 0px;
  -webkit-transition: .5s;
  transition: .5s;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  position: relative;
  line-height: 25px;
  font-family: "Arial", Helvetica, sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button .title {
    font-size: 14px;
  }
}

/* Default state: collapsed with plus icon */
.accordion-button.collapsed i::before {
  content: "\f067";
  /* Plus icon */
  font-family: 'FontAwesome';
}

/* Expanded state: minus icon */
.accordion-button:not(.collapsed) i::before {
  content: "\f068";
  /* Minus icon */
  font-family: 'FontAwesome';
}

.accordion-item .accordion-button i {
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
}

.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #d4a751c2;
  border-radius: 4px 4px 0 0;
  font-family: "Arial", Helvetica, sans-serif;
}



.accordion-button::after {
  display: none;
}

.accordion-collapse {
  border: none;
}

.accordion-body {
  border-radius: 0 0 4px 4px;
  /* background-color: #fff; */
  padding: 15px 13px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-body {
    padding: 30px;
  }
}

.accordion-body p {
  margin: 0;
  font-family: "Arial", Helvetica, sans-serif;
    color: #000000;
    font-size: 14px;
    line-height: 25px;
    word-break: break-word;
    padding: 6px 0px;
}

.accordion-body p:last-child {
  margin: 0;
}

.accordion-item {
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 0px 20px #00000007;
  box-shadow: 0px 0px 20px #00000007;
  border-radius: 4px;
  position: relative;
    z-index: 0;
}

.accordion-item:last-child {
  margin: 0;
}

.accordion-body ol {
  padding-left: 0;
  margin-bottom: 5px;
}

div#collapse11 {
  padding-left: 15px;
}

.accordion-body ol li {
  font-family: "Arial", Helvetica, sans-serif;
  font-size: 14px;
}

section.faq.section {
  background-image: url('/investors/wp-content/uploads/2025/05/faq_img.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  /* Ensure content remains above the pseudo-element */
}

section.faq.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 29%);
  /* Adjust the color and opacity */
  z-index: -1;
  /* Place the pseudo-element behind the section */
}


/* our_properites css start Secondary Image Styling */
section.properties_our {
  padding: 50px 0px;
  background: #efecec;
}

.heading_design {
  /* padding: 0px 0px 30px 0px; */

  text-align: center;
  position: relative;
  /* font-family: "Sangbleu Sunrise", Sans-serif; */
}

.heading_design .title {
  position: relative;
  color: #000;
  font-size: 25px;
  font-weight: 700;
  padding-right: 0px;
  margin-bottom: 15px;
  display: inline-block;
  font-family: "Arial", Helvetica, sans-serif;
  text-transform: capitalize;
}

/* Card Hover Effect */
.property-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Heart Icon */
.heart-icon {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.5rem;
}

/* Secondary Image Styling */
.secondary-img {
  width: 80px;
  height: auto;
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

/* Buttons Styling */
.btn-warning {
  border-radius: 20px;
  padding: 10px 20px;
}

.text_properites {
  padding: 0px 0px 00px;
  min-height: 280px;
}
.property-card .card-body {
  
  max-height: 630px;
  /* min-height: 350px; */
}
h5.card-title.fw-bold {
  line-height: 25px;
  font-size: 23px;
  color: #000;
  font-family: "Sangbleu Sunrise", sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
}

.card-body {
  background-color: #fff;
  /* border-top: 3px solid #f9c74f; */
  padding: 30px 25px 30px;
}

/* Transition Effect */
.card:hover .heart-icon {
  background-color: #f9c74f;
  color: #fff;
}

/* styles.css */
/* styles.css */
.table-section-title td {
  background-color: #f8f9fa;
  font-weight: bold;
  text-align: left;
  font-size: 1rem;
  /* Adjust font size for section titles */
}

thead.table-light tr th {
  background: #e6e7e8;
  font-family: "Arial", Helvetica, sans-serif;
}

tr.table-section-title td {
  font-size: 14px !important;
  font-family: "Arial", Helvetica, sans-serif;
  background: #e6e7e8;
}

.table tbody tr:hover {
  background-color: #f1f1f1;
  /* Light gray background on hover */
  transition: background-color 0.3s ease;
  /* Smooth transition */
}

/* Optional: Section title rows should not change color on hover */
.table-section-title:hover td {
  background-color: #f8f9fa;
  /* Maintain section title background */
}

.detail-item.me-4.mb-2.d-flex.align-items-center {
  margin-bottom: 0;
  padding-right: 0px !important;
    padding-left: 0 !important;
    line-height: 20px !important;
    font-size: 14px;
    margin-right: 0px !important;
}
.detail-item img {
    margin-right: .5rem !important;
}
.detail-item.mb-2.d-flex.align-items-center span {
  font-family: "Arial", Helvetica, sans-serif;
  font-size: 13px;
}

.detail-item i {
  color: #4f5962;
}

.btn.loadMoreBtn:hover {
  text-decoration: none;
  
}

.btn.loadMoreBtn:hover {
  text-decoration: none;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn.loadMoreBtn {
  border-radius: 5px;
  width: auto;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px !important;
  color: #fff;
  margin-top: 20px;
  background: #f3c060;
  font-family: Arial, Helvetica, sans-serif
}

.button-design {
  display: flex;
  justify-content: center;
  margin: 0px auto;
}


header.header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 18%);
}


@media (max-width: 480px) {
  header.header-section {
    padding: 15% 0 0%;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0px;
  backdrop-filter: blur(12px);
  background: rgb(58 83 107 / 29%);
  border-bottom: var(--border);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
}

.navbar.scrolled {
  padding: 0.8rem 5%;
  background: rgba(10, 10, 10, 0.95);
}

.nav-links {
  display: flex;
  gap: 2.0rem;
  list-style: none;
  align-items: center;
  margin-bottom: 0;
}

.nav-links a {
  color: rgb(255 255 255);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  /* padding: 0.5rem 0; */
  transition: all 0.3s ease;
  font-size: 16px;
  letter-spacing: 0.3px;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f3c060;
  background-size: 300%;
  transition: width 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: #f3c060;
  background-size: 300%;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #f3c060;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
  width: 100%;
  animation: gradient 8s linear infinite;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.mobile-nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-toggle .bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.4s ease;
}

.mobile-nav-toggle .bar:nth-child(1) {
  top: 14px;
}

.mobile-nav-toggle .bar:nth-child(2) {
  top: 19px;
}

.mobile-nav-toggle .bar:nth-child(3) {
  top: 24px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
  }

  .nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03));
    pointer-events: none;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links a:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-links a:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-links a:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-links a:nth-child(5) {
    transition-delay: 0.5s;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translate(-50%, 5px) rotate(45deg);
    width: 24px;
  }

  .mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translate(-50%, -5px) rotate(-45deg);
    width: 24px;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  .hero_banner .banner-section {
    max-width: 100%;
    padding: 20px 0px 0px;
  }

  .hero_banner h2 {
    font-size: 28px;
  }

  .hero_banner h3 {
    font-size: 22px;
  }

  .hero_banner h4 {
    font-size: 18px;
  }
}

.features-list {
  list-style-type: none;
  margin: 20px 0;
  padding-left: 0px;
  font-size: 1.2rem;
}

.banner-content p {
  font-size: 1rem;
  margin-top: 20px;
  opacity: 0.9;
}

.about-section {
  position: relative;
  padding: 50px 0px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 40px;
}

.sec-title h3 {
  font-size: 25px;
  font-family: "Arial", Helvetica, sans-serif;
  line-height: 32px;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-top: 50px;
  padding-right: 100px;
}

.about-section .content-column .text {
  position: relative;
  color: #777777;
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 10px;
  font-family: "Arial", Helvetica, sans-serif;
}

.about-section .content-column .email {
  position: relative;
  color: #252525;
  font-weight: 700;
  margin-bottom: 50px;
}

.about-section .image-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .image-column .inner-column {
  position: relative;
  padding: 50px 30px 0px 0px;
}

.about-section .image-column .inner-column:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  left: 40px;
  bottom: 100px;
  z-index: -1;
  border: 2px solid #d7a449;
}

.about-section .image-column .inner-column .image {
  position: relative;
}

.about-section .image-column .inner-column .image:before {
  position: absolute;
  content: '';
  left: -50px;
  bottom: -50px;
  width: 299px;
  height: 299px;
}

.about-section .image-column .inner-column .image img {
  position: relative;
  width: 100%;
  display: block;
}

.about-section .image-column .inner-column .image .overlay-box {
  position: absolute;
  left: 40px;
  bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
  position: relative;
  color: #252525;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 110px;
  height: 110px;
  color: #d7a449;
  font-size: 68px;
  font-weight: 700;
  line-height: 105px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #000000;
}

.about-section .btn-style-three {
  position: relative;
  line-height: 24px;
  color: #252525;
  font-size: 15px;
  font-weight: 700;
  background: none;
  display: inline-block;
  padding: 11px 40px;
  background-color: #ffffff;
  text-transform: capitalize;
  border: 2px solid #d7a449;
  font-family: "Arial", Helvetica, sans-serif;
}

.sec-title2 {
  color: #fff;
}

.sec-title {
  position: relative;
  padding-bottom: 0px;
}

.sec-title .title {
  position: relative;
  color: #d7a449;
  font-size: 20px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}

/*======================================
    Faq CSS
========================================*/
.faq {
  padding-bottom: 50px;
  background-color: #efecec;
  padding-top: 50px;
  position: relative;
}

.section-title h2 {
  font-weight: 700;
  font-size: 35px;
  font-weight: 600;
  color: #623895;
  font-family: "Arial", Helvetica, sans-serif;
}

.section-title p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #757065;
  margin: 18px 0 20px;
  font-family: "Arial", Helvetica, sans-serif;
  font-style: normal !important;
}

.section-title h3 {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
  color: #bc2834;
  text-transform: capitalize;
}

.section-title h2.wow.fadeInUp {
  font-weight: 700;
  font-size: 25px;
  font-weight: 600;
  color: #f3c060;
}

.accordion-button:not(.collapsed) i::before {
  content: "\f068";
  font-family: 'FontAwesome';
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq .section-title {
    margin-bottom: 40px;
  }

  .contact-sec .contact-block {
    padding: clamp(23px, 1.667vw, 51px);
    border-radius: clamp(18px, 1.25vw, 48px);
    border: 0.5px solid #f1f2f7;
    height: 100%;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  }

  .section-title {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 0px;
    position: relative;
    z-index: 0;
  }

  div#accordionExample2 {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq {
    padding-bottom: 40px;
  }
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding-right: 40px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.accordion-item .accordion-button {
  border-radius: 4px;
  font-size: 17px;
  font-weight: 500;
  width: 100%;
  display: block;
  overflow: hidden;
  border: none;
  padding: 10px 10px;
  padding-right: 33px;
  background-color: #fff;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  font-family: "Arial", Helvetica, sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button {
    padding: 18px 20px;
    padding-right: 40px;
  }
}

.accordion-item .accordion-button .title {
  padding-left: 30px;
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 0px;
  -webkit-transition: .5s;
  transition: .5s;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  position: relative;
  line-height: 25px;
  font-family: "Arial", Helvetica, sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button .title {
    font-size: 14px;
  }
}

.accordion-button.collapsed i::before {
  content: "\f067";
  font-family: 'FontAwesome';
}

.accordion-button:not(.collapsed) i::before {
  content: "\f068";
  font-family: 'FontAwesome';
}

.accordion-item .accordion-button i {
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
}

.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #d4a751c2;
  border-radius: 4px 4px 0 0;
  font-family: "Arial", Helvetica, sans-serif;
}

.accordion-button::after {
  display: none;
}

.accordion-collapse {
  border: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-body {
    padding: 30px;
  }
}

.accordion-item {
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 0px 20px #00000007;
  box-shadow: 0px 0px 20px #00000007;
  border-radius: 4px;
}

.accordion-item:last-child {
  margin: 0;
}

.accordion-body ol {
  padding-left: 15px;
  margin-bottom: 5px;
}

div#collapse11 {
  padding-left: 15px;
}

.accordion-body ol li {
  font-family: "Arial", Helvetica, sans-serif;
  font-size: 14px;
}

/* our_properites css start Secondary Image Styling */
section.properties_our {
  padding: 50px 0px;
  background: #efecec;
}

.heading_design {
  text-align: center;
  position: relative;
}

.heading_design .title {
  position: relative;
  color: #f3c060;
  font-size: 25px;
  font-weight: 700;
  padding-right: 0px;
  margin-bottom: 15px;
  display: inline-block;
  font-family: "Arial", Helvetica, sans-serif;
  text-transform: capitalize;
}

.property-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Heart Icon */
.heart-icon {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.secondary-img {
  width: 80px;
  height: auto;
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

.btn-warning {
  border-radius: 20px;
  padding: 10px 20px;
}



.card-body {
  background-color: #fff;
  border-top: 3px solid #f9c74f;
  padding: 35px 30px 30px;
}

.card:hover .heart-icon {
  background-color: #f9c74f;
  color: #fff;
}

.table-section-title td {
  background-color: #f8f9fa;
  font-weight: bold;
  text-align: left;
  font-size: 1rem;
}

thead.table-light tr th {
  background: #e6e7e8;
  font-family: "Arial", Helvetica, sans-serif;
}

.table tbody tr:hover {
  background-color: #f1f1f1;
  transition: background-color 0.3s ease;
}

.table-section-title:hover td {
  background-color: #f8f9fa;
}

p.card-text.text-muted {
  color: #4f5962;
  font-weight: 700;
  font-family: "Sangbleu Sunrise", sans-serif !important;
  padding-bottom: 10px;
  font-size: 12px;
  margin-bottom: 0px;
}

p.text-muted {
  font-size: 13px;
  font-size: 14px;
}

.detail-item.me-4.mb-2.d-flex.align-items-center span {
  font-family: "Sangbleu Sunrise", sans-serif !important;
  color: #6c757d;
}

.detail-item.mb-2.d-flex.align-items-center span {
  font-family: "Sangbleu Sunrise", sans-serif !important;
  color: #6c757d;
}

.detail-item i {
  color: #4f5962;
}

.btn.loadMoreBtn:hover {
  text-decoration: none;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn.loadMoreBtn {
  border-radius: 5px;
  width: auto;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px !important;
  color: #fff;
  margin-top: 20px;
  background: #f3c060;
  font-family: Arial, Helvetica, sans-serif;
}

.button-design {
  display: flex;
  justify-content: center;
  margin: 0px auto;
}


/* our_properites css end Secondary */
section.resources_section {
  padding: 50px 0px;
}

section.resources_section h2.wow.fadeInUp {
  font-size: 25px;
  font-weight: 600;
  color: #f3c060;
  font-family: "Arial", Helvetica, sans-serif;
}

section.resources_section div#accordionFlushExample {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px auto;
}

section.gallery_section {
  padding: 50px 0px;
  background: #efecec;
}

.gallery_heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0px auto;
  text-align: center;
  row-gap: 10px;
  padding-bottom: 30px;
}

.gallery_heading p {
  width: 75%;
  margin: 0px auto;
  font-family: "Arial", Helvetica, sans-serif;
  font-size: 18px;
}

.gallery_heading h2 {
  font-size: 25px;
  font-weight: 600;
  color: #f3c060;
  font-family: "Arial", Helvetica, sans-serif;
}

.gallery-img {
  margin-top: 25px;
}

.gallery-design {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-design img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-design img:hover {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.gallery-button {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  margin: 0px auto;
}

.contact-form-head {
  background-image: url('/investors/wp-content/uploads/2025/05/2020-06-04_15-37-31.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  padding: 50px 0px;
}

.contact-form-head::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  background-color: #f5f5f5;
  z-index: -1;
}
/*---------contact us section design css start -------------*/
.ftco-section {
  padding: 4em 0;
}

.heading-section {
  font-size: 28px;
  color: var(--black);
}

.wrapper {
  width: 100%;

}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.contact-wrap {
  background: #fefcf9;
}

#form-message-warning {
  color: red;
}

#form-message-success {
  color: #28a745;
  font-size: 18px;
  font-weight: bold;
}

.wrapper .form-group {
  margin-bottom: 0.8rem;
}

.wrapper .col-lg-4.col-md-5.d-flex.align-items-stretch {
  padding: 0px 0px !important;
}

.wrapper .col-lg-8.col-md-7.order-md-last.d-flex.align-items-stretch {
  padding: 0px 0px !important;
}

.contactForm .label {
  color: var(--black);
  text-transform: capitalize;
  font-size: 17px;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: "Arial", Helvetica, sans-serif;
}


#contactForm .form-control {
  font-size: 14px;
  font-family: "Arial", Helvetica, sans-serif;
  padding: 10px 10px;
  background-color: #faf5eb;
  border-radius: 5px;
}

.contactForm .form-control {
  border: none;
  padding: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.5em + 0.75rem + 2px) !important;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000 !important;
  background-color: #faf5eb;
  background-clip: padding-box;
  border: 1px solid #faf5eb !important;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#contactForm .form-control {
  font-size: 14px;
  font-family: "Arial", Helvetica, sans-serif;
}

textarea.form-control {
  height: inherit !important;
}

#message {
  resize: vertical;
}

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-size: 16px;
  font-weight: bold;
}

.social-icons {
  display: flex;
  margin: 0px auto;
  justify-content: left;
  text-align: center;
  width: 100%;
  padding-top: 50px;
}

.p-md-5 {
  padding: 1rem 1rem 0.5rem !important;
}

.social-icons a {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: var(--primaryColor-1);
  color: black;
}

.text.pl-3 p a {
  display: inline-block;
  text-align: left;
  font-size: 18px;
  padding: 0px 20px;
  color: #4a6173;
  text-decoration: none;
  font-family: "Arial", Helvetica, sans-serif;
}

.info-wrap {
  color: #000;
}

.info-wrap.bg-primary.w-100.p-md-5.p-4 p {
  font-family: "Arial", Helvetica, sans-serif;
}

.info-wrap h3 {
  color: #f3c060;
  font-size: 20px;
  font-family: "Arial", Helvetica, sans-serif;
  font-weight: 600;
}

.info-wrap .dbox {
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.info-wrap .dbox .icon span {
  font-size: 18px;
  color: #d4a751;
}

.info-wrap .dbox p {
  margin-bottom: 5px;
}

.info-wrap .dbox p span {
  font-weight: 500;
  color: #d4a751;
}

.bg-primary {
  background: var(--secondaryColor-1) !important;
}

.contactForm input.btn.btn-primary {
  background: #d4a751;
  padding: 15px 30px 15px;
  border-radius: 50px;
  color: #fff !important;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
  border: 0;
  overflow: hidden;
  font-family: "Arial", Helvetica, sans-serif;
}

.contactForm input.btn.btn-primary:hover {
  border: 1px solid var(--primaryColor-1);
  transition: 0.3s;
  background-color: #000000f7;
 
}

select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #faf5eb;
  border-radius: 4px;
  color: #858482;
  background: #faf5eb;
  font-size: 14px;
  font-family: "Arial", Helvetica, sans-serif;
}

[type="radio"]:not(:checked) {
    border: 2px solid #d4a751;
    border-radius: 100%;
    background: transparent;
}

.radio_button {
  display: flex;
  column-gap: 10px;
}

.radio_button p input {
  width: 22px;
  height: 22px;
}

.radio_button p {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;

  border-radius: 50%;
  border: 2px solid #d4a751;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.radio_button input[type="radio"]:checked {
    background-color: transparent;
    border-color: #d4a751;
    border: 2px solid #d4a751;
}

.radio_button input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background-color: #d4a751;
    border-radius: 50%;
}

.copyright_section {
  padding: 25px 0;
  background-color: #faf5eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_design {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.soical_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.soical_box ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
}

.soical_box li {
  list-style: none;
  margin: 0 10px;
}

.soical_box li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  color: #d4a751;
  border: 1px solid #d4a751;
  transition: 0.3s;
  text-decoration: none;
}

.soical_box li a:hover {
  color: #fff !important;
  border-color: #000;
  background-color: #000;
}

.copyright_text {
  font-size: 14px;
  color: #222222;
  line-height: 1.5;
  text-align: right;
  font-family: Arial, Helvetica, sans-serif;
}

.soical_box .fa {
  font-family: 'FontAwesome';
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  transition: 0.3s;
}

.footer-section {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}

.footer-widget p {
  padding-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-3 {
  display: flex;
}

.social-icons .widget_text .footer-widget a span.fa {
  font-family: 'FontAwesome';
  font-family: 'FontAwesome';
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  font-size: 18px;
  color: #d4a751 !important;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  transition: 0.3s;
}


.table-responsive {
  overflow-y: auto;
}
.ngg-galleryoverview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
  align-items: end;

}

.ngg-gallery-thumbnail-box {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ngg-gallery-thumbnail-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.ngg-gallery-thumbnail-box:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.ngg-gallery-thumbnail-box:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .ngg-galleryoverview {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ngg-galleryoverview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ngg-galleryoverview {
    grid-template-columns: 1fr;
  }
}



.content-section {
  display: none;
  margin-top: 10px;
  font-size: 15px;
}

.button-design {
  margin-top: 20px;
}

.loadMoreBtn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

.loadMoreBtn:hover {
  background-color: #0056b3;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.5em + 0.75rem + 2px) !important;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #faf5eb;
  background-clip: padding-box;
  border: 1px solid #faf5eb !important;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.pl-3,
.px-3 {
  padding-left: 0rem !important;
}

.footer-4 {
  display: flex;
}

.content-section {
  font-family: "Arial", Helvetica, sans-serif;
  margin-top: 10px;
  font-size: 18px;
}

.inner-column p {
  font-family: "Arial", Helvetica, sans-serif;
  margin-top: 10px;
  font-size: 18px;
  color: #000;
}

span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  column-gap: 15px;
  align-items: center;
  justify-content: flex-start;
}

.wpcf7-list-item {
  margin: 0 0 0 0em !important;

}

form p {
  margin: 0rem 0 !important;
}

div#wpcf7-f38-o1 {
  padding: 20px 0px;
}

.ngg-galleryoverview.default-view .ngg-gallery-thumbnail a {
  margin: 8px 8px;
  box-shadow: none;
}


.property-row.hidden {
  display: none !important;
}


.row.property-row {
  display: flex;
  row-gap: 16px;
  margin-bottom: 20px;
}


.ngg-navigation {
  display: none !important;
}


.section-title .title {
  position: relative;
  color: #f3c060;
  font-size: 25px;
  font-weight: 700;
  padding-right: 00px;
  margin-bottom: 15px;
  display: inline-block;
  font-family: "Arial", Helvetica, sans-serif;
  text-transform: capitalize;
}

.info-wrap.bg-primary.w-100.p-md-5.p-4 .title {
  position: relative;
  color: #d7a449;
  font-size: 20px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}

.info-wrap.bg-primary.w-100.p-md-5.p-4 .title::before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #f3c060;
}
.property_data {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    margin-top: 15px;
}
.detail-item{
    line-height: 20px !important;
    font-size: 14px;}

    .ue_post_blocks_link.listing_grid_link_tab a {
      padding: 8px 8px 8px;
      border-radius: 25px !important;
      background-color: #f3c060;
      color: #fff;
      text-decoration: none;
      font-size: 13px;
      display: flex;
      align-items: center;
      text-align: center;
      font-weight: 600;
      font-family: Arial, Helvetica, sans-serif;
      justify-content: center;
  }

  .ue_post_blocks_link.listing_grid_link_tab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
}

.ue_post_blocks_link.listing_grid_link_tab a:hover {
  background: #000;
  border-color: #000;
}

.test-button {
  margin-top: 25px;
}

button.btn.btn-primary.youtube-video {
  padding: 10px 10px 10px;
  border-radius: 25px !important;
  background-color: #f3c060;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-family: "Arial", Helvetica, sans-serif;
  display: flex;
  align-items: center;
  border: 1px solid #f3c060;
  column-gap: 5px;
  font-weight: 600;
}

button.btn.btn-primary.youtube-video:hover {
  background: #000;

}

@media (max-width:999px) {
  .button_container {
    justify-content: center;
  }
  button.btn.btn-primary.youtube-video{
    padding: 6px 10px 6px;
    font-weight: 500;
    font-size: 13px;
  }
  a.btn.btn-primary.property_inspection{
    font-size: 13px !important;
    padding: 10px 10px 10px !important
  }
  .sorting {
    width: 100%;
  }
  .ue_post_blocks_link.listing_grid_link_tab {
    gap: 8px;
}

  .revenue {
    width: 100%;
}
.appriciation {
  width: 100% ;
}
.select_boxes h5 {
  font-size: 14px !important;
}

  .contact-form-head {
    background: none !important;
  }

  .contact-form-head::before {
    width: 100%;
  }

   .table-responsive {
        /* max-height: fit-content; */
        overflow-y: auto;
    }
  .about-section .content-column .inner-column {
    position: relative;
    padding-top: 50px;
    padding-right: 0px;
  }

  .sec-title h3 {
    font-size: 18px;
    font-family: "Arial", Helvetica, sans-serif;
    line-height: 30px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: auto;
    max-width: auto;
  }
}

@media (max-width:767px) {
  .contact-form-head{
    padding: 0px;
  }
  .contact-7-form{
    display: flex;
    flex-direction: column-reverse;
  }
  .zerod {
    background-color: #fff;
    border-top: none !important;
    padding: 20px 5px 20px;
}

section.driver_form.m-4 .p-4 {
    padding: 0.5rem !important;
}
section.driver_form.m-4 {
    margin: 0.5rem !important;
}
  .button_container {
    justify-content: left;
  }
  .card-body {
    background-color: #fff;
    /* border-top: 3px solid #f9c74f; */
    padding: 30px 25px 30px 20px;
}
  .revenue {
    width: 100% !important;
  }
  .appriciation {
    width: 100% !important ;
  }
  .sorting {
    width: 100% !important;
  }
  .select_boxes {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 20px;
    padding-bottom: 25px;
    justify-content: center;
  }
  .hero_banner .banner-section {
    max-width: 100%;
    padding: 20px 0px 0px;
    max-width: 100%;
    padding: 0px 0px 0px 250px !important;
    flex-direction: row;
    margin-bottom: 40px !important;
}
nav.navbar {
  background: linear-gradient(to right, #fdfdfd 47%, rgb(24 67 107) 100%) !important;
}
  .table-responsive {
    max-height: fit-content;
    overflow-y: auto;
}
.hero_banner {
  position: relative;
  color: #fff;
  padding: 5% 0 !important;
}

.disclaimer {
  font-size: 12px;
  color: #fff;
  margin-top: -30px;
  font-weight: 400;
  width: 41%;
  float: inline-end;
}
.about-section .content-column .inner-column {
    padding-top: 0px;
}
  .features-list {
    font-size: 1rem;
    margin: 0;
    flex-direction: row;
    padding: 0px !important;
}

.features-list li {
    font-size: 12px !important;
    line-height: 15px !important;
    position: relative;
    padding-left: 0px;
    text-align: left;
    margin-bottom: 4px;
  font-weight: 500;
}

.banner-section1 {
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-left: auto;
  text-align: left;
  max-width: 360px !important;
}

  .logo img {
    width: 100%;
    height: auto;
    max-width: 190px;
}
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0px;
    backdrop-filter: blur(12px);
    background: rgb(58 83 107 / 29%);
    border-bottom: var(--border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}


    .youtube_video_modal .modal-dialog{
        max-width:400px;
    }
  .row.property-row {
    display: flex;
    row-gap: 35px;
    flex-direction: column;
  }

  .section-title {
    text-align: center;
    margin-bottom: 00px;
    padding: 0 0px;
    position: relative;
    z-index: 0;
  }

  .nav-links a {
    font-size: 16px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
  }

  .info-wrap.bg-primary.w-100.p-md-5.p-4 {
    margin-top: 50px;
  }

  .logo {
    width: 50%;
  }
   .faq {
    padding-bottom: 30px;
  }
  .faq .section-title {
    margin-bottom: 30px;
    padding: 0;
  }
  .faq .xs-margin {
    margin-top: 20px !important;
  }
   .accordion-body {
    padding: 20px;
  }
  .accordion-item .accordion-button .title {
    font-size: 14px;
  }
  .accordion-item .accordion-button {
    padding: 15px 20px;
    padding-right: 40px;
  }
    .radio_button p input {
    width: 16px;
    height: 16px;
}
span.wpcf7-list-item-label {
    font-size: 15px;
}
.wpcf7-list-item {
    display: flex;
    margin: 0 0 0 1em;
    align-items: center;
}
.contactForm .label {
    color: var(--black);
    text-transform: capitalize;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-family: "Arial", Helvetica, sans-serif;
}
.content-section {
  font-family: "Arial", Helvetica, sans-serif;
    margin-top: 10px;
    font-size: 15px;
}
.footer-widget h1 {
    font-size: 22px;
}
.info-wrap.bg-primary.w-100.p-md-5.p-4 p {
  font-family: "Arial", Helvetica, sans-serif;
    font-size: 16px;
}
.text.pl-3 p a {
   font-size: 16px;
    
}
.copyright_section {
    padding: 20px 0 10px;
    background-color: #faf5eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    row-gap: 13px;
    margin: 0px auto;
}
.info-wrap .dbox {
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}
.radio_button input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}
.faq {
    padding-bottom: 30px;
  }
    .faq .section-title {
    margin-bottom: 30px;
    padding: 0;
  }
  .table tbody td:first-child {
    font-size: 1rem;
    font-size: 13px !important;
    text-align: left;
}
thead.table-light tr th {
    background: #e6e7e8;
    font-size: 13px;
    padding: 5px 10px;
    font-family: "Arial", Helvetica, sans-serif;
}

.table-bordered td, .table-bordered th {
    font-size: 12px;
    padding: 10px 5px;
}
.hero_banner h1 {
  word-break: break-word;
  text-align: left;
  font-size: 14px !important;
  padding-left: 0 !important;
  font-weight: 500;
}

.hero_banner h2 {
  font-size: 12px;
  padding-left: 0 !important;
  font-weight: 500;
}
 .ue_post_blocks_link.listing_grid_link_tab a {
    padding: 10px 10px 10px;
    font-size: 13px;
    font-weight: 600;
}
}

.youtube_video_modal .modal-body {
  position: relative;
  padding: 0;
}

.youtube_video_modal .close {
  position: absolute;
  right: -18px;
  top: -14px;
  z-index: 999;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  opacity: 1;
  border-radius: 50%;
  padding: 3px !important;
  width: 31px;
  background-color: #f3c060;
  border: none;
}

.youtube_video_modal .modal-dialog, .youtube_video_modal .modal-dialog iframe {
  max-width: 800px !important;
  width: 100% !important;
}

.footer-widget h1 {
  font-family: Arial, Helvetica, sans-serif;
}

a#loadMore {
font-family: Arial, Helvetica, sans-serif;
}

.subhead {
	padding-bottom: 30px;
}
.subhead p {
    font-family: "Arial", Helvetica, sans-serif;
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
  }


  .tooltip-container {
    position: relative;
    /* cursor: pointer; */
    padding-right: 20px; 
}

.tooltip-text {
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 5px;
  position: absolute;
  bottom: 100%;
  left: 100%;
  transform: translateX(-47%);
  width: max-content;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 10;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
td.tooltip-container {
  width: 20%;
  position: relative;
}
/* .table-bordered td a {
  color: #000;
  text-decoration: none;
} */

.select_boxes {
  display: flex;
  /* grid-template-columns: repeat(2, 1fr); */
  column-gap: 20px;
  padding-bottom: 25px;
  justify-content: center;
}
.select_boxes select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #faf5eb;
  border-radius: 4px;
  color: #858482;
  background: #faf5eb;
  font-size: 14px;
  font-family: "Arial", Helvetica, sans-serif;
}

.select_boxes h5 {
  font-size: 17px;
}
.revenue {
  width: 25%;
}
.appriciation {
  width: 25%;
}
select:focus,
select:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}
#ajax-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  width: 100px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 560px) {
  header.header-section {
      margin-top: 80px;
      padding: 0 0;
  }

}
@media (max-width: 1100px) {
  .nav-links {
    gap: 1rem;
}
  .ue_post_blocks_link.listing_grid_link_tab {
    gap: 8px;
}
  .ue_post_blocks_link.listing_grid_link_tab a {
    padding: 10px 10px 10px !important;
    font-size: 13px;
}
}
@media (max-width: 768px) {
header.header-section {
  margin-top:80px;
  padding: 0 0;
}

}

@media (max-width: 820px) {
  .hero_banner h1 {
    word-break: break-word;
    text-align: left;
    font-size: 16px !important;
    padding-left: 0 !important;
  }
  .hero_banner h2 {
    font-size: 24px;
    padding-left: 0 !important;
  }
}

@media (max-width: 998px) {
  .hero_banner {
    position: relative;
    color: #fff;
    padding: 5% 0 5%;
}
  .banner-section1 {
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-left: auto;
    text-align: left;
    max-width: 575px;
   
}
.hero_banner .banner-section {
  max-width: 100%;
  padding: 20px 0px 0px;
  max-width: 100%;
  padding: 0px 0px 0px 375px;
  flex-direction: row;
  margin-bottom: 50px;
}
}

tr.toggle-total-expense td.tooltip-container {
  cursor: pointer;
}



tr.blank td.tooltip-container::before {
  content: "\00a0"; 
  display: block;
  height: 12px; 
  border-bottom:1px solid #000
}
.property-divider {
  width: 90%;
  max-width: calc(100vw - 20px);
  margin: 0 auto;
  border: none;
  height: 2px;
  background-color: #000000;
}
tr.blank {
  height: 40px;
}
.tooltip-text {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  font-size: 12px;
  white-space: nowrap;
}

.toggle-total-expense:hover .tooltip-text {
  visibility: visible;
}
/* tr.toggle-total-expense .tooltip-container:hover::after {
  transform: translateY(-50%) rotate(180deg) !important;
} */

tr.toggle-total-expense td.tooltip-container::after{
  font-family: "Font Awesome 5 Free";
  content: "\f078"; /* Down arrow (collapsed state) */
  font-weight: 900;
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}

tr.toggle-total-expense.expanded td.tooltip-container::after {
  content: "\f077"; /* Up arrow (expanded state) */
}
a.btn.btn-primary.property_inspection:hover {
  background: #000;
  border-color: #000;
}

.button_container {
    column-gap: 10px;
    justify-content: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
}
a.btn.btn-primary.property_inspection {
  padding: 8px 7px 8px;
  border-radius: 25px !important;
  background-color: #f3c060;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
  border-color: #f3c060;
}
.sorting {
  width: 25%;
}
thead.table-light tr.table-white th {
  background-color: #fff;
}



/* new css  */
.property-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1; 
}


/* / Push buttons to the bottom of the card / */
/* .property-card .button_container {
  margin-top: auto; 
} */

.property-card .card-img-top {
  width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 280px;
  max-height: 200px; 
}

.property-card p.text-muted {
  /* flex-grow: 1; */
  /* margin-bottom: 50px; */
}
.button-test {
  margin-top: 0px;
}
.button-test {
  margin-top: 0px;
}
a.btn.btn-primary.property_inspection {
  display: flex;
  justify-content: center;
text-align:center;
} a.btn.btn-primary.property_inspection {
  display: flex;
  justify-content: center;
text-align:center;
}

.accordion-body ul li {
  margin: 0;
  margin-bottom: 15px;
  font-family: "Arial", Helvetica, sans-serif;
  color: #000000;
  font-size: 14px;
  line-height: 25px;
}
h4 strong {
  font-size: 20px;
}

.btn-container {
  align-items: baseline;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
} 
a.btn.btn-primary.youtube-video {
  padding: 6px 10px;
  border-radius: 25px !important;
  background-color: #f3c060;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  display: inline-flex; 
  align-items: center;
  justify-content: center; 
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
  border-color: #f3c060;
  height: 45px; 
  min-width: 100px; 
  column-gap: 5px;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #000000;
}

.purchase-button {
  display: inline-block;
  margin-bottom: 30px;
  justify-content: left;
  margin-left: 20px;
  margin-right: 20px;
}
.purchase-button {
  display: inline-block;
  margin-bottom: 30px;
  justify-content: left;
  margin-left: 20px;
  margin-right: 20px;
}
a.btn.btn-primary.property_purchase{
  padding: 10px 12px 10px;
    /* border-radius: 25px !important; */
    background-color: #f3c060;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    border-color: #f3c060;
    justify-content: center;
    text-align: center;
}

a.btn.btn-primary.property_purchase:hover {
  background: #000;
  border-color: #000;
}
.hiddend{
  display: none;
}

a#loadMore2 span.loadMoreBtn-label {
    background: unset !important;
    padding: 0 !important;
    height: unset;
}

.video-section {
    padding: 50px 0;
    background-color: #efecec;
}
.video-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-top: 10px;
  margin-bottom: 40px;
  
}
.video-box {
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-top: 30px;
}
.video-title {
  color: #000000;
  font-family: "Arial", Helvetica, sans-serif;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  color: #f3c060;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}
.numbers_section {
    padding: 50px 0;
}
.airbnb_table {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}
 
.airbnb_table h1 {
font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-family: "Sangbleu Sunrise", Sans-serif;
}
 
/* .table_box {
  width: 100%;
  overflow-x: auto;
} */
 
.ta {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-family: "Sangbleu Sunrise", Sans-serif;
}
 
.ta th,
.ta td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 14px;
  text-align: center !important;
}
 
.ta th {
  background-color: #e6e7e8;
  font-weight: 600;
  color: #222;
  text-align: center;
  font-family: "Sangbleu Sunrise", Sans-serif;
}
 
.ta .td_bold {
  font-weight: 600;
  background-color: #f9f9f9;
}
 
 
.ta tr:nth-child(even) {
  background-color: #fdfdfd;
}
 
/* .ta tr:hover {
  background-color: #f1f9ff;
} */
.ta td a {
  color: #2b9ae8 !important;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
  font-family: "Sangbleu Sunrise", Sans-serif;
}
 
.ta td a:hover {
  color: #2b9ae8; /* darker blue on hover */
  text-decoration: none;
}
 
@media screen and (max-width: 767px) {
  .ta th,
  .ta td {
    padding: 9px;
    font-size: 12px;
  }
 
  table.ta {
      min-width: unset;
  }
  .airbnb_table h1 {
    font-size: 20px;
  }
  section.hero_banner {
    padding: 9% 0 !important;
  }
}
 
.numbers_box {
    padding: 20px 0px 00px;
    text-align: center;
    position: relative;
    font-family: "Sangbleu Sunrise", Sans-serif;
}
 
.airbnb_table p {
    text-align: center;
    font-family: "Sangbleu Sunrise", Sans-serif;
}
.table_box {
    margin-bottom: 15px;
}
.numbers_box h1 {
    position: relative;
    color: #f3c060;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    font-family: "Arial", Helvetica, sans-serif;
    text-transform: capitalize;
}
/* Main table wrapper */
.assetvalue_table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-bottom: 30px;
}
 
.assetvalue_table h1 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Sangbleu Sunrise", Sans-serif;
  font-weight: 600;
  color: #333;
}
 
/* Table Styling */
.assetvalue_table table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
.assetvalue_table td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  vertical-align: middle;
  font-family: "Sangbleu Sunrise", Sans-serif;
  font-weight: 700;
}
.assetvalue_table th{
    font-weight: 600;
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #333;
    border: 1px solid #ddd;
    vertical-align: middle;
}
/* Header row style */
.assetvalue_table .table_th2 th {
  background-color: #e6e7e8;
  color: #000;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  font-family: "Sangbleu Sunrise", Sans-serif;

}
td.td_bold {
    font-weight: 700;
    font-family: "Sangbleu Sunrise", Sans-serif;
    background-color: #f9f9f9;
}
/* Link color */
.assetvalue_table a {
  color: #2b9ae8;
  text-decoration: none;
  font-weight: 500;
}
 
/* Right align numeric values */
.assetvalue_table td[style*="text-align:right"] {
  text-align: center !important;
}
 
/* Responsive scroll for mobile */
@media (max-width: 768px) {
  .assetvalue_table .table_box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .assetvalue_table td, .assetvalue_table .table_th2 th {
    font-size: 12px;
    padding: 8px 3px;
  }

  .assetvalue_table th{
    padding: 10px 8px;
  }

  .assetvalue_table{
    padding: 20px 10px;
  }
}


/* new css start */
.section-title {
  position: relative;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  z-index: 0;
}
.btn.loadMoreBtn:hover {
  text-decoration: none;
  background-color: #000;
}
div#property-list {
  row-gap: 45px;
}
button.custom-btn {
  padding: 10px 18px;
  border-radius: 20px;
  background-color: #f3c060;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-family: "Arial", Helvetica, sans-serif;
  border: 1px solid #f3c060;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
}
button.custom-btn:hover {
  background-color: #000; /* black background */
  color: #fff; /* keep text white */
  border-color: #000; /* update border color if needed */
}
.main-button a,
.main-button button {
    padding: 10px;
    border-radius: 25px;
    background-color: #f3c060;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-family: "Arial", Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f3c060;
    font-weight: 600;
    gap: 5px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: normal; /* text wrap ho jaye agar zyada ho */
}
.main-button {
  padding: 0px 30px 20px;
}
.ue_post_blocks_link.listing_grid_link_tab {
  display: flex;
  flex-direction: column;
  /* padding: 0px 30px 20px; */

}

.more-infodiv {
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* neew table css */
.cashBalances_table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-bottom: 30px;
}
 
.cashBalances_table h1 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Sangbleu Sunrise", Sans-serif;
  font-weight: 600;
  color: #333;
}
 
/* Table Styling */
.cashBalances_table table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
.cashBalances_table td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  vertical-align: middle;
}
.cashBalances_table th{
    font-weight: 600;
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #333;
    border: 1px solid #ddd;
    vertical-align: middle;
}
/* Header row style */
.cashBalances_table .table_th2 th {
  background-color: #e6e7e8;
  color: #000;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  font-family: "Sangbleu Sunrise", Sans-serif;
}
/* Link color */
.cashBalances_table a {
  color: #2b9ae8;
  text-decoration: none;
  font-weight: 700;
  
  font-family: "Sangbleu Sunrise", Sans-serif;
}
 
/* Right align numeric values */
.cashBalances_table td[style*="text-align:right"] {
  text-align: center !important;
  font-family: "Sangbleu Sunrise", Sans-serif;
}
 
.custom-link {
  color: inherit;         /* Use parent color */
  text-decoration: none;  /* Remove underline */
  cursor: pointer;
}
.custom-link:hover {
  text-decoration: none; /* Optional: underline on hover */
}
th.month-th {
  color: black;
}

/* Table ke sabhi rows ke pehle column (Month/Year) td ke liye */
td:first-child a {
  color: black;
}

div#ourAreaContent a#toggleButton span.loadMoreBtn-label {
  padding: 10px 20px 10px;
  border-radius: 25px !important;
  background-color: #f3c060;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
  border-color: #f3c060;
  display: flex;
  justify-content: center;
  text-align: center;
}

div#ourAreaContent a#toggleButton span.loadMoreBtn-label:hover{
    background: #000;
}



@media (max-width: 980px) {
  .heading_design .title {
    margin-bottom: 30px;
}
.text_properites {
  padding: 0px 0px 00px;
  min-height:230px;
}
.gallery_heading p {
  width:100%;
  
  margin: 0px auto;
  font-family: "Arial", Helvetica, sans-serif;
  font-size: 18px;
}
.nav-links li {
    line-height: 1.8;
}
.nav-links {
        gap: 1.7rem;
    }
}

@media (max-width: 767px) {
  section.resources_section div#accordionExample{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px auto;
  }
  .text.pl-3 p a {
    font-size: 14px;
    padding: 0px 13px;
  }
  .status-publish {
    padding: 0px 20px;
  }
  .hero_banner .banner-section {
    padding: 0px 0px 0px 240px !important;
    margin-bottom: 40px !important;
  }
  .post-inner.thin {
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
    padding: 0px !important;
  }
}


/* register and login page css */

.page-container .register-form {
    max-width: 800px;
    margin: 40px auto;
    background-color: #fefcf9;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.page-container .register-form h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #f3c060;
  text-align: center;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}
.form-group label.required::after {
  content: " * ";
  color: #000;
  margin-left: 2px;
}

/* Grid layout for form */
.page-container .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}
.page-container .form-group {
  margin-bottom: 10px;
}

.page-container .form-group label {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-family: "Arial", Helvetica, sans-serif;
}
.page-container .form-group input,
.page-container .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2d8c5;
  border-radius: 10px;
  background-color: #fef9ef;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  font-family: Arial, Helvetica, sans-serif;
}

.page-container .form-group input:focus,
.page-container .form-group select:focus {
  outline: none;
  border-color: #d4a751;
  box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.2);
  font-family: Arial, Helvetica, sans-serif;
}

/* Button Styling */
.page-container .register-form button[type="submit"] {
  background-color: #d4a751;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  /* width: 100%; */
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 10px;
}

.page-container .register-form button[type="submit"]:hover {
  background-color: #000000;
}
 .register-form  .form-button {
    display: flex;
    gap: 10px;
}
 .register-form  button.btn1.btn-primary.px-5 {
    border-color: #000;
    color: #fff;
    background: #000;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    /* width: 100%; */
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
}
.register-form  button.btn1.btn-primary.px-5 :hover {
  background-color: #d4a751;
}
/* Responsive */
@media (max-width: 768px) {
 .page-container  .form-grid {
    grid-template-columns: 1fr;
  }

 .page-container .form-group.full-width {
    grid-column: span 1;
  }
}
.page-container {
    padding: 50px 0px;
}

.page-container .form-heading {
  color: #f3c060;
  font-size: 30px;
   text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
main#site-content{
    padding: 50px 0px;
}
.accordion-body a {
    color: blue !important;
}



/* login form css start */

.um-register {
 
    max-width: 800px !important;
    margin: 40px auto;
  
    padding: 10px 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.um-field {
    position: relative;
    padding: 10px 0 0 0;
}
.um-247.um {
    max-width: 800px !important;
    margin: 40px auto;
    padding: 10px 30px 20px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
 .um-row .um-field-area input {
    width: 100% !important;
    padding: 12px 14px !important;
    /* border: 1px solid #e2d8c5 !important; */
    border-radius: 10px;
    /* background-color: #fef9ef !important; */
    font-size: 15px !important;
    color: #333;
    transition: all 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
}
.um-register .um-row .um-field-area select {
    width: 100% !important;
    padding: 12px 14px !important;
     border-radius: 10px;
    font-size: 15px !important;
    color: #333;
    transition: all 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
}
.um-register .um-row .um-field-area input:focus, .um-register .um-row .um-field-area select:focus {
    outline: none;
    border-color: #d4a751;
    box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.2);
    font-family: Arial, Helvetica, sans-serif;
}
.um-left.um-half .um-button {
    background-color: #d4a751 !important;
    color: white;
    /* padding: 12px 24px !important; */
    border: none;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 0px;
}
.um-left.um-half .um-button:hover{
   background: #000 !important;
   border-color: #000 !important;
  color: #fff !important;
}
a.um-button.um-alt {
    background: #000 !important;
    color: #fff !important;
    border-radius: 50px !important;
     font-size: 16px !important;
    font-weight: 600 !important;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}
a.um-button.um-alt:hover{
  background-color: #d4a751 !important;
  border-color: #d4a751 !important;
}
.um-field .um-field-area .select2.select2-container .select2-selection {
    border-radius: 10px !important;
}
.um-row .um-field-area input {
    border-radius: 10px !important;
}
.um-field .um-field-area .um-form-field {
    border-radius: 10px !important;
}
.um-um_password_id.um {
    max-width: 800px !important;
    margin: 40px auto;
    padding: 10px 30px 20px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.um-center .um-button {
    background-color: #d4a751 !important;
    color: white;
    /* padding: 12px 24px !important; */
    border: none;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 0px;
}
.entry-header-inner.section-inner.medium h1 {
    color: #d4a751;
}

.post-inner.thin {
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
    padding: 20px;
}
.status-publish {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    flex-direction: column;
    width: 100%;
}
main#site-content {
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

@media (max-width: 600px) {
  main#site-content {
    min-height: 60vh; /* chhoti screen ke liye kam height */
  }
}
a.um-link-alt {
    line-height: 22px;
    /* color: #888 !important; */
    display: block !important;
   
    font-weight: 400;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: none !important;
}

.um-col-alt-b {
    display: flex;
    justify-content: end;
    padding-top: 10px;
    /* color: #000; */
}
a.um-link-alt:hover{
 text-decoration: none !important;
}


.um-um_password_id.um .um-center .um-button:hover {
    background: #000 !important;
}
 
.um-um_password_id.um .um-center .um-button {
    background-color: #d4a751 !important;
    color: white;
    /* padding: 12px 24px !important; */
    border: none;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 0px;
}
 
.um-um_password_id.um {
    max-width: 450px;
    max-width: 800px !important;
    margin: 40px auto;
    padding: 10px 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.um-field-area input {
    border-radius: 10px !important;
}
.entry-header-inner.section-inner.medium h1 {
    color: #d4a751;
}
.um-col-alt.um-col-alt-b {
    justify-content: center;
}
.post-meta-edit-link-wrapper {
    display: none !important;
}
.spinner-border {
  width: 2rem;
  height: 2rem;
  border: 0.25em solid #ccc;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.fullpage-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base style for all screen sizes */
.nav-tabs .nav-link {
  min-width: 120px;            /* Wider tabs */
  text-align: center;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 8px 8px 0 0;  /* Rounded top corners */
  transition: background 0.3s, color 0.3s;
}
 
/* Active tab */
.nav-tabs .nav-link.active {
    background-color: #d4a751;
    color: #ffffff;
    border-color: #dee2e6 #dee2e6 transparent;
}
 
/* Hover effect */
.nav-tabs .nav-link:hover {
  background-color: #e9ecef;
  color: #d4a76d;
}
 
/* On large screens (lg), make tabs even wider */
@media (min-width: 992px) {
  .nav-tabs .nav-link {
    min-width: 190px;
    font-size: 1.1rem;
    padding: 12px 24px;
  }
}
.nav-tabs button.nav-link {
    color: #000;
}
/* Base Form Styling */
#profile-form {
  background: #fff;
  border-radius: 16px;
  
}

#profile-form .form-label {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
 
/* Button */
#profile-form .btn-primary {
  background-color: #c99b3f;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
}
 
#profile-form .btn-primary:hover {
  background-color:#000;
}
.tab-content {
  max-width: 800px !important;
  margin: 20px auto;
  padding: 30px 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
/* Input fields */
#profile-form .form-control, #profile-form select {
  border-radius: 10px;
  border: 1px solid #ddd !important;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  margin-bottom: 0 !important;
}
 
#profile-form .form-control:focus,
#profile-form .form-select:focus {
  border-color: #c99b3f; /* golden border on focus */
  box-shadow: none;
}
 
/* Labels */
#profile-form .form-label {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
 
/* Button */
#profile-form .btn-primary {
  background-color: #c99b3f;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
}
 
#profile-form .btn-primary:hover {
  background-color: #000;
}
#profile-form input.form-control {
  height: auto !important;
  margin-top: 0 !important;
  border: 1px solid #ddd !important;
  background: #fff !important;
  border-radius: 5px;
  padding: 8px 10px;
}
select#state {
  margin-bottom: 0 !important;
}
#profile-form .col-md-12 {
  margin-top: 0 !important;
  padding: 5px 0px;
}
select#country {
  border-radius: 5px !important;
  padding: 8px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  margin-bottom: 0 !important;
}

 
.assetGrowth_table h1 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  color: #333;
  font-family: "Sangbleu Sunrise", Sans-serif;
}



.cashOnHand_table {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}
 
.cashOnHand_table h1 {
font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-family: "Sangbleu Sunrise", Sans-serif;
}

.cashOnHand_table p {
    text-align: center;
    font-family: "Sangbleu Sunrise", Sans-serif;
    font-size: 15px;
    line-height: 27px;
    padding-top: 20px;
}

/* new css add  */

.newConstructionROI_table, .airbnb_table, .assetGrowth_table, .assetvalue_table, .cashOnHand_table, .currentProjects_table {
    max-width: 1200px;
    margin: 40px auto;
    padding: 25px 20px 5px;
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fb;
     border-radius: 12px;
}
.newConstructionROI_table h1 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  color: #333;
  font-family: "Sangbleu Sunrise", Sans-serif;
}

 .table_box {
  overflow-x: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Table Structure */
.newConstructionROI_table .ta {
  width: 100%;
  border-collapse: collapse;
  /* min-width: 1000px; */
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

/* Table Head */
 .ta thead {
  background-color: #111827;
  color: #ffffff;
}

 .ta th {
  background-color: #204a70;
  padding: 14px 18px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 600;
  color: #fff;
  font-family: "Sangbleu Sunrise", Sans-serif;
  width: 20%;
}

 .ta th:last-child {
  border-right: none;
}

/* Table Body */
.ta td {
  padding: 14px 18px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
}

/* Right-align specific columns if needed */
 .ta td[style*="text-align:right"] {
  text-align: right;
}

/* Alternate Row Colors */
 .ta tbody tr:nth-child(even) {
  background-color: #f1f5f9;
}

/* Hover Row Effect */
.ta tbody tr:hover {
  background-color: #e2e8f0;
  transition: background 0.3s;
}

/* Bold Important Column Text */
 
/* Link Styling */
 .ta td a {
  /* color: #2b9ae8; */
  text-decoration: none;
  font-weight: 600;
}

.ta td a:hover {
  text-decoration: underline;
}
.numbers_section p {
    text-align: center;
    font-family: "Sangbleu Sunrise", Sans-serif;
    font-size: 15px;
    line-height: 27px;
    /* padding-top: 20px; */
    /* padding-bottom: 20px; */
    background: #dbebfb;
    padding: 20px 20px;
    color: #000;
    border-radius: 10px;
}

/*  */
/* Main Dev Summary Cell */
.newConstructionROI_table .ta td.dev-summary {
  white-space: nowrap;
  padding: 14px 18px;
  vertical-align: top;
}

/* Each row inside the Dev Summary */
.newConstructionROI_table .ta td.dev-summary .dev-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-family: 'SangBleu Sunrise', sans-serif;
}

/* Label (Land, Construction, etc.) */
.newConstructionROI_table .ta td.dev-summary .dev-label {
  font-weight: 600;
  color: #111827;
  min-width: 110px; /* Adjust width as needed for alignment */
  text-align: left;
  font-family: 'SangBleu Sunrise', sans-serif;
}

/* Link styling */
.newConstructionROI_table .ta td.dev-summary a {
  color: #2b9ae8;
  text-decoration: none;
  font-weight: 600;
}

.newConstructionROI_table .ta td.dev-summary a:hover {
  text-decoration: underline;
}

.currentProjects_table h1 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  color: #333;
  font-family: "Sangbleu Sunrise", Sans-serif;
}
.currentProjects_table .ta {
  width: 100%;
  border-collapse: collapse;
  /* min-width: 1000px; */
  background: white;
  border-radius: 10px;
  overflow: hidden;
}
.currentProjects_table .ta td.dev-summary {
  white-space: nowrap;
  padding: 14px 18px;
  vertical-align: top;
}

/* Each row inside the Dev Summary */
.currentProjects_table .ta td.dev-summary .dev-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-family: 'SangBleu Sunrise', sans-serif;
}

/* Label (Land, Construction, etc.) */
.currentProjects_table .ta td.dev-summary .dev-label {
  font-weight: 600;
  color: #111827;
  min-width: 110px; /* Adjust width as needed for alignment */
  text-align: left;
  font-family: 'SangBleu Sunrise', sans-serif;
}

/* Link styling */
.currentProjects_table .ta td.dev-summary a {
  color: #2b9ae8;
  text-decoration: none;
  font-weight: 600;
}

.currentProjects_table .ta td.dev-summary a:hover {
  text-decoration: underline;
}

.resources_section button.accordion-button.collapsed{
    border: 1px solid #d9d9d9;
}

.resources_section .accordion-body{
    border: 1px solid #d9d9d9;
    margin-top: -2px;
}



@media (max-width: 767px) {

    .table_box {
      overflow-x: auto;
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    /* ✅ Responsive Table */
    .newConstructionROI_table .ta {
      width: 100%;
      border-collapse: collapse;
      background: white;
      border-radius: 10px;
      table-layout: auto; /* Let columns size based on content */
    }

    .currentProjects_table .ta {
      width: 100%;
      border-collapse: collapse;
      background: white;
      border-radius: 10px;
      table-layout: auto; /* Let columns size based on content */
    }

    /* ✅ Headings - allow shrink */
    .ta th {
      background-color: #204a70;
      padding: 14px 12px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      font-family: "Sangbleu Sunrise", Sans-serif;
      white-space: normal; /* allow wrap */
    }

    /* ✅ Table cells */
    .ta td {
      padding: 14px 12px;
      font-size: 14px;
      color: #333;
      border-bottom: 1px solid #e5e7eb;
      text-align: left;
      font-weight: 600;
      white-space: normal; /* allow wrap */
      word-break: break-word;
    }

    /* ✅ Responsive Dev Summary Cell */
    .newConstructionROI_table .ta td.dev-summary {
      white-space: normal !important;
      vertical-align: top;
      padding: 14px 3px;
    }

    /* ✅ Dev Row - Responsive Flex */
    .newConstructionROI_table .ta td.dev-summary .dev-row {
      display: flex;
      gap: 5px;
      margin-bottom: 6px;
      width: 190px;
      justify-content: space-between;
    }

    /* ✅ Dev Label - flexible width */
    .newConstructionROI_table .ta td.dev-summary .dev-label {
      font-weight: 600;
      color: #111827;
      flex: 0 0 auto;
      min-width: 90px;
    }

    /* ✅ Link Styling */
    .newConstructionROI_table .ta td.dev-summary a {
      color: #2b9ae8;
      text-decoration: none;
      font-weight: 600;
      word-break: break-word;
    }
    .newConstructionROI_table .ta td.dev-summary a:hover {
      text-decoration: underline;
    }

    /* ✅ Responsive Dev Summary Cell */
    .currentProjects_table .ta td.dev-summary {
      white-space: normal !important;
      vertical-align: top;
      padding: 14px 3px;
    }

    /* ✅ Dev Row - Responsive Flex */
    .currentProjects_table .ta td.dev-summary .dev-row {
      display: flex;
      gap: 5px;
      margin-bottom: 6px;
      width: 190px;
      justify-content: space-between;
    }

    /* ✅ Dev Label - flexible width */
    .currentProjects_table .ta td.dev-summary .dev-label {
      font-weight: 600;
      color: #111827;
      flex: 0 0 auto;
      min-width: 90px;
    }

    /* ✅ Link Styling */
    .currentProjects_table .ta td.dev-summary a {
      color: #2b9ae8;
      text-decoration: none;
      font-weight: 600;
      word-break: break-word;
    }
    .currentProjects_table .ta td.dev-summary a:hover {
      text-decoration: underline;
    }
     .ta td {
      padding: 10px 5px;
      font-size: 12px;
      color: #333;
      border-bottom: 1px solid #e5e7eb;
      white-space: unset;
      text-align: left;
      font-weight: 600;
  }
  .ta th {
    background-color: #204a70;
    padding: 14px 10px;
    font-size: 12px;
    /* white-space: nowrap; */
    font-weight: 600;
    color: #fff;
    font-family: "Sangbleu Sunrise", Sans-serif;
    /* width: 10%; */
}
.newConstructionROI_table, .airbnb_table, .assetGrowth_table, .assetvalue_table, .cashOnHand_table, .currentProjects_table {
      max-width: auto;
      margin: 0px auto 30px;
      padding: 12px;
      border-radius: 12px;
    }
    .revenue-details p {
        width: 90% !important;
        font-size: 14px;
        font-weight: 500;
    }
/* .numbers_section p {
    font-size: 12px;
    line-height: 23px;
} */
}
@media (max-width: 600px) {
  .ta th, .ta td {
    font-size: 11px;
    padding: 10px 2px;
  }
}
.assetContent , .revenueContent {
    background: #dbebfb;
    padding: 17px 20px;
    color: #000;
    border-radius: 10px;
    margin-bottom: 10px;
}
.assetContent  p , .revenueContent p{
    text-align: center;
    font-family: "Sangbleu Sunrise", Sans-serif;
    font-size: 15px;
    line-height: 27px;
    background: transparent;
    margin-bottom: 0;
    color: #000;
    padding: 0px 0px;
    border-radius: 0px;
}
.revenue-details p {
  background: transparent;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  width: 40%;
  margin: 0 auto;
}
 
.revenue-details {
  background: #dbebfb;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.details-row td {
    padding: 6px;
}

.details-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}