/* Chatbot Widget Styles */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.chatbot-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ec1d3d, #d91a36);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(236, 29, 61, 0.3);
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
}

.chatbot-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(236, 29, 61, 0.4);
  width: 120px;
  border-radius: 30px;
}

.chatbot-button:active {
  transform: translateY(0);
}

.chatbot-button svg {
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.chatbot-text {
  opacity: 0;
  margin-left: 0px;
  white-space: nowrap;
  transition: all 0.3s ease;
  transform: translateX(-10px);
  width: 0;
  overflow: hidden;
}

.chatbot-button:hover .chatbot-text {
  opacity: 1;
  transform: translateX(0);
  width: auto;
  margin-left: 8px;
}

.chatbot-button:hover svg {
  transform: scale(0.9);
}

/* Pulse animation for attention */
.chatbot-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: rgba(236, 29, 61, 0.3);
  animation: chatbot-pulse 2s infinite;
  z-index: -1;
}

@keyframes chatbot-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .chatbot-widget {
    bottom: 15px;
    right: 15px;
  }

  .chatbot-button {
    width: 50px;
    height: 50px;
  }

  .chatbot-button:hover {
    width: 50px;
    border-radius: 50%;
  }

  .chatbot-text {
    display: none;
  }
}

/* Hide default Salesforce chat button if it appears */
.embeddedServiceHelpButton {
  display: none !important;
}

/* Content Animation */
.awards-slide-content .awards-year-inner {
  transition: all 0.3s ease 0.1s;
  opacity: 0;
  transform: translateY(10px);
}

.swiper-slide.expanded .awards-slide-content .awards-year-inner {
  opacity: 1;
  transform: translateY(0);
}

.awards-slide-content .title-desc-list-point {
  transition: all 0.3s ease 0.2s;
  opacity: 0;
  transform: translateY(10px);
}

.swiper-slide.expanded .awards-slide-content .title-desc-list-point {
  opacity: 1;
  transform: translateY(0);
}

.pr-100 {
  padding-right: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-60 {
  padding-right: 60px;
}

.pl-60 {
  padding-left: 60px;
}

/* Custom cursor for modal */
.modal-cursor-outer {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid #ec1d3d;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
  opacity: 0;
}

.modal-cursor-inner {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #ec1d3d;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
  opacity: 0;
}

.theme-modal.is-active .modal-cursor-outer,
.theme-modal.is-active .modal-cursor-inner {
  opacity: 1;
}

.theme-modal-background {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  cursor: pointer !important;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-modal-background {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  cursor: pointer !important;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 100%;
  height: 100%;
}

.theme-modal-card-body {
  border: 0;
  z-index: 1;
  position: relative;
  cursor: auto !important;
  overflow: visible;
  background-color: transparent;
}

.close {
  cursor: pointer !important;
}

/* Header CSS - Copied from raymond-realty */
html.insomenu-active #header,
html.html-menu-active #header,
html.is-active #header,
#header.sticky {
  backdrop-filter: unset;
}

.theme-logo {
  position: relative;
  z-index: 9;
}

.menu-icons {
  position: relative;
  z-index: 9;
}

.scroll-down header {
  transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -o-transform: translateY(-100px);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll-up header,
.html-menu-active header {
  top: 0;
  background: transparent;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Menu Item Hover Highlighting */
.header-dropdown > .menu-link:hover,
.header-dropdown.menu-active > .menu-link {
  color: #ec1d3d;
}

/* Cursor Css Start */
body {
  /* cursor: none; */
}

.cursor-inner.cursor-hover {
  opacity: 0.3 !important;
}

.cursor-outer.cursor-hover {
  opacity: 0 !important;
}

.menu-trigger {
  border-left: 1px solid #fff;
  padding-left: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-whatsapp,
.header-contact {
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 50%;
}

/* .header-whatsapp:hover,
.header-contact:hover,
.menu-trigger:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.header-whatsapp:hover svg,
.header-contact:hover svg,
.menu-trigger:hover svg {
  stroke: #cead53;
} */

.project-detail-page header.sticky {
  /* opacity: 0; */
  transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -o-transform: translateY(-100px);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* [data-rht-toaster] {
  z-index: 999 !important;
  inset: 0 !important;
  display: none !important;
} */

.menu-trigger:hover {
  background: unset;
  transform: scale(1);
}

.custom-select select {
  border-bottom: 0 !important;
}

.blog-menu-main:after {
  background: linear-gradient(
    to right,
    rgb(255 255 255) 25%,
    rgba(255, 255, 255, 0) 100%
  );
  right: 0px;
  transform: rotate(180deg);
  width: 150px;
}

.blog-menu-main .project-menu-item {
  width: -webkit-fill-available;
}

.error.error-message {
  color: #ff0000;
  font-size: 13px;
  position: absolute;
  bottom: -18px;
}

.mobile-with-country .country-code {
  position: relative;
  min-width: 100px;
}

.collapse {
  visibility: unset;
}

.accordion .card__title {
  width: 100%;
}

/* React Select CSS Start */
.react-select__control {
  border: 0 !important;
  border-radius: 0 !important;
  height: 40px;
  border-bottom: 1px solid #bcbec0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.react-select__control:hover {
  border: 0 !important;
  border-bottom: 1px solid #bcbec0 !important;
  box-shadow: none !important;
}

.react-select__control--is-focused {
  border: 0 !important;
  border-bottom: 1px solid #bcbec0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.react-select__control--menu-is-open {
  border: 0 !important;
  border-bottom: 1px solid #bcbec0 !important;
  box-shadow: none !important;
}

.react-select__input-container {
  margin: 0;
  padding: 0;
}

.react-select__value-container.react-select__value-container--has-value {
  padding: 0;
}

.react-select-container {
  outline: none !important;
  width: 100%;
}

.react-select-container:focus,
.react-select-container:focus-visible,
.react-select-container:focus-within {
  outline: none !important;
  border: none !important;
}

/* Option styling */
.react-select__option {
  background-color: #ffffff !important;
  color: #333333 !important;
  cursor: pointer;
  padding: 8px 12px;
}

.react-select__option:hover {
  background-color: #ec1d3d5e !important;
  color: #333333 !important;
}

.react-select__option--is-selected {
  background-color: #ec1d3d !important;
  color: #ffffff !important;
}

.react-select__option--is-selected:hover {
  background-color: #ec1d3d !important;
  color: #ffffff !important;
}

.react-select__option--is-focused {
  background-color: #ec1d3d5e !important;
  color: #333333 !important;
}

.react-select__option--is-focused.react-select__option--is-selected {
  background-color: #ec1d3d !important;
  color: #ffffff !important;
}

/* Remove blue outline and focus styles */
.react-select__control--is-focused,
.react-select__control--is-focused:hover {
  border: 0 !important;
  border-bottom: 1px solid #bcbec0 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Dropdown indicator styling */
.react-select__dropdown-indicator {
  color: #bcbec0;
}

.react-select__dropdown-indicator:hover {
  color: #ec1d3d;
}

/* Clear indicator styling */
.react-select__clear-indicator {
  color: #bcbec0;
}

.react-select__clear-indicator:hover {
  color: #ec1d3d;
}

/* Menu styling */
.react-select__menu {
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  margin-top: 1px;
}

/* Single value styling */
.react-select__single-value {
  color: #333333;
}

/* Placeholder styling */
.react-select__placeholder {
  color: #bcbec0;
}

/* Menu list styling */
.react-select__menu-list {
  padding: 0;
}

/* Ensure no border on any state */
.react-select__control,
.react-select__control:hover,
.react-select__control--is-focused,
.react-select__control--menu-is-open {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid #bcbec0 !important;
}

.react-select__value-container,
.react-select__value-container.css-hlgwow {
  padding: 0 !important;
}

.form-group.custom-select .react-select__control,
.form-group.custom-select .react-select__control:hover,
.form-group.custom-select .react-select__control--is-focused,
.form-group.custom-select .react-select__control--menu-is-open {
  border-bottom: 0 !important;
}

.enquire-now-form .form-group.custom-select .react-select__control,
.enquire-now-form .form-group.custom-select .react-select__control:hover,
.enquire-now-form .form-group.custom-select .react-select__control--is-focused,
.enquire-now-form
  .form-group.custom-select
  .react-select__control--menu-is-open {
  border-bottom: 1px solid #bcbec0 !important;
}

.form-group.custom-select .react-select__indicator-separator {
  border: 0 !important;
  background: 0;
}
/* React Select CSS End */

.news-media-wrapper .number-pagination {
  width: unset;
  justify-content: center;
}

.number-pagination li button {
  background-color: #d7d7d7;
  color: #4f4f4f;
  font-weight: 700;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-pagination li button:hover,
.number-pagination li.active button {
  background-color: #ec1d3d;
  color: #fff;
}

.number-pagination .page-item-arrow button {
  background-color: transparent !important;
}

.number-pagination .ellipsis span {
  background-color: #d7d7d7;
  color: #4f4f4f;
  font-weight: 700;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: default;
}

.number-pagination .page-item.ellipsis {
  pointer-events: none;
}

.brand-highlight-title {
  font-size: 32px !important;
  margin-bottom: 0 !important;
}

#highlight-text-slider li {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.tenx-highlights #highlight-text-slider {
  /* margin-top: 20px; */
}

.confi-block {
  width: 100%;
}

.border-radius-0 {
  border-radius: 0 !important;
}
.react-select__menu {
  z-index: 99 !important;
}

.enquire-now-modal-card {
  max-width: 550px !important;
}

.blog-content ul li {
  list-style-type: disc !important;
}

.theme-block-icon {
  background: transparent;
  border: 0;
}

.square-img-fixed-ratio-2 {
  width: 100% !important;
  aspect-ratio: 1/1.2 !important;
  object-fit: cover !important;
  object-position: center !important;
  height: auto !important;
}

.number-pagination li button {
  border: 0;
}

.accordion .card__title {
  border: 0;
  background: transparent;
}

.splide:not(.is-overflow) .splide__pagination {
  display: flex;
}

.our-team-item .theme-block-icon {
  /* background: #fff !important; */
  padding: 0;
}

.project-detail-page.park-avenue-thane .btn.text-golden,
.project-detail-page.ten-x .btn.text-golden {
  color: #000000 !important;
}

.project-detail-page.park-avenue-thane .location-map .location-link,
.project-detail-page.ten-x .location-map .location-link {
  background-color: #000000 !important;
  border-color: #000000 !important;
}

#highlight-text-slider h4 {
  display: inline-block;
  background: linear-gradient(
    45deg,
    #b9902e 36.37%,
    #cead53 48.55%,
    #bf993f 51%,
    #b38931 53.91%,
    #af842d 55.84%,
    #af842d 56.67%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0px;
  line-height: 1.2;
  max-width: 160px;
  overflow-wrap: break-word;
  hyphens: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.error {
  background-color: #ea5455;
  color: #fff;
  white-space: nowrap;
  /* width: 100%; */
  padding: 0 6px;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  position: absolute;
}

.m-auto {
  margin: 0 auto;
}

/* Search Project List Css Start */

.block-title.text-left {
  text-align: left !important;
}

.navbar-search-wrapper {
  position: relative;
}

.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 999;
  max-height: 230px;
  overflow-y: auto;
  margin-top: 8px;
}

.search-results-list {
  padding: 8px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 10px !important;
  border-radius: 0 !important;
  padding-right: 0 !important;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f5f5f5;
  transition: background-color 0.2s ease;
}

.search-result-item:hover {
  background-color: #f8f9fa;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-image {
  margin-right: 12px;
  flex-shrink: 0;
}

.search-result-content {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-location {
  font-size: 12px;
  color: #666;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-type {
  font-size: 11px;
  background: #ec1d3d;
  color: white;
  padding: 2px 6px;
  border-radius: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.search-view-all {
  padding: 12px 16px;
  border-top: 1px solid #e0e0e0;
  background: #f8f9fa;
}

.search-view-all a {
  color: #ec1d3d;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}

.search-view-all a:hover {
  text-decoration: underline;
}

.search-no-results {
  padding: 20px 16px;
  text-align: center;
}

.search-no-results p {
  margin: 0 0 8px 0;
  color: #666;
  font-size: 14px;
}

.search-no-results a {
  color: #ec1d3d;
  text-decoration: none;
  font-size: 13px;
}

.search-error {
  padding: 16px;
  text-align: center;
  color: #ec1d3d;
}

.search-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #ec1d3d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.search-results-list .block-link {
  position: absolute;
  width: 100%;
  height: 100%;
}

.search-results-list .theme-block {
  position: relative;
}

/* Search Project List Css End */

.connect-with-us-form .column.w-100 {
  width: 100% !important;
}

.fancybox-caption-content {
  font-size: 10px;
}

/* Loader Logo Centering */
.raymond-logo {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.raymond-logo img {
  display: block !important;
  margin: 0 auto !important;
}

/* Global Loader Container Centering */
.global-loader-overlay .loader-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Page Loader Container Centering */
.page-loader {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}
.text-start {
  text-align: start;
}

.confi-block.the-address-by-gs::before {
  background-image: url(../images/elements/logo-element.svg);
}

.confi-block.invictus-by-gs::before {
  background-image: url(../images/elements/invictus-gs-new.svg);
}

.confi-block.ten-x::before {
  background-image: url(../images/elements/tenx-new.svg);
}

.coming-soon-detail h1 {
  font-size: 140px;
  line-height: 200px;
  color: #ec1d3d;
  font-weight: 100;
  padding: 0 30px;
}

.video-play {
  cursor: pointer;
  background: unset;
  border: 0;
  padding: 0;
  box-shadow: none;
}
/* .btn {
  font-size: 13px;
} */

.search-results-list .columns {
  margin-bottom: 0 !important;
  width: calc(50% - 8px);
}

.theme-slider .splide__list {
  justify-content: center;
}

.connect-with-us-form .react-select__indicator-separator {
  background: unset !important;
}

.footer-menu-block .footer-inner-col:last-child {
  text-align: end;
}

.header-contact svg path {
  stroke: 0 !important;
}

/* Inner accordion styles (same pattern as parent accordions) */
.sidebar-menu-item-inner .sidebar-menu-link-inner {
  height: 0;
  overflow: hidden;
  -moz-transition: height 0.4s ease;
  -ms-transition: height 0.4s ease;
  -o-transition: height 0.4s ease;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

/* Invictus by GS Video Banner Styles */
.invictus-video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.invictus-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.invictus-banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: cover;
}

.invictus-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.invictus-banner-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.invictus-banner-content .banner-desc {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.invictus-video-banner .img-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 4;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 500;
}

/* Invictus Video Banner Responsive adjustments */
@media screen and (max-width: 1024px) {
  .invictus-video-banner {
    height: 80vh;
    min-height: 550px;
  }
}

@media screen and (max-width: 768px) {
  .invictus-video-banner {
    height: 70vh;
    min-height: 500px;
  }

  .invictus-banner-video {
    height: 70vh;
  }

  .invictus-video-banner .img-tag {
    bottom: 15px;
    right: 15px;
    padding: 6px 10px;
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  .invictus-video-banner {
    height: 60vh;
    min-height: 400px;
  }

  .invictus-banner-video {
    height: 60vh;
  }

  .invictus-video-banner .img-tag {
    bottom: 10px;
    right: 10px;
    padding: 5px 8px;
    font-size: 10px;
  }
}

.project-search-container .form-group.custom-select .react-select__control,
.project-search-container
  .form-group.custom-select
  .react-select__control:hover,
.project-search-container
  .form-group.custom-select
  .react-select__control--is-focused,
.project-search-container
  .form-group.custom-select
  .react-select__control--menu-is-open {
  border-bottom: 1px solid #ddd !important;
}

.project-search-container .search-close {
  border: 1px solid #ec1d3d !important;
}

/* Fix React Select dropdown z-index issues */
.project-search-container .react-select__menu {
  z-index: 9999 !important;
  position: absolute !important;
}

.project-search-container .react-select__menu-list {
  z-index: 9999 !important;
}

.project-search-container .react-select-container {
  z-index: 999 !important;
  position: relative !important;
}

/* Ensure the search overlay has proper z-index */
.project-search-overlay,
.project-search-overlay- {
  z-index: 9998 !important;
  position: fixed !important;
}

.project-search-container {
  z-index: 9998 !important;
  position: relative !important;
}

/* Projects loading styles */
.projects-loading {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
}

.loading-spinner::after {
  content: '';
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #ec1d3d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.theme-link-btn {
  font-family: 'Jost', sans-serif;
  background: unset;
  border: unset;
  border-bottom: 1px solid #ec1d3d;
  padding: 0;
  color: #4f4f4f;
}

.amenities-img-item img {
  max-height: 320px;
}

/* Read More/Read Less jQuery-style slideUp/slideDown Animation */
/* .read-more-with-content-wrapper {
  position: relative;
}

.read-more-button-container {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 0;
}

.read-more-content {
  overflow: hidden !important;
  max-height: 0px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  transform: translateY(-10px) translateZ(0);
  will-change: max-height, opacity, margin, transform;
  transition: max-height 3.0s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s,
              transform 3.0s cubic-bezier(0.16, 1, 0.3, 1),
              margin 3.0s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 3.0s;
}

.read-more-with-content-wrapper.active .read-more-content {
  max-height: 500px !important;
  opacity: 1 !important;
  visibility: visible !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 20px !important;
  margin-bottom: 15px !important;
  transform: translateY(0) translateZ(0);
  transition: max-height 3.0s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
              transform 3.0s cubic-bezier(0.16, 1, 0.3, 1),
              margin 3.0s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 0s;
}

.read-more-with-content-wrapper.active .read-more-button-container {
  margin-top: 0;
}
.read-more-with-content {
  transition: all 0.3s ease-in-out;
  display: inline-block;
  opacity: 1;
  animation: fadeInButton 0.5s ease-in-out;
}

.read-more-with-content:hover {
  transform: translateY(-1px);
} */

@keyframes fadeInButton {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rera-desc h6 {
  font-size: 12px;
}

.our-team-img .theme-block-icon {
  padding: 0;
}

/* Read More Smooth Animation Styles */
.read-more-with-content-wrapper {
  position: relative;
}

.read-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more-with-content-wrapper.active .read-more-content {
  max-height: 2000px;
  transition: max-height 3.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-text {
  color: #555;
  margin-bottom: 12px;
  transition: opacity 1s ease;
  opacity: 1;
  transform: translateY(0);
}

/* .read-more-with-content-wrapper.active .preview-text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  transition: opacity 0.5s ease, max-height 0.5s ease, margin-bottom 0.5s ease;
} */

.read-more-with-content {
  text-transform: capitalize;
  font-size: 13px;
}

.read-more-with-content:hover {
  color: #d91a36;
  border-bottom-color: #d91a36;
}

/* About Us specific styling */
.about-us-read-more .read-more-content {
  margin-top: 10px;
}

.about-us-read-more .preview-text {
  color: #555;
  line-height: 1.6;
}

.about-us-read-more .read-more-with-content {
  font-weight: 700;
}

.theme-filter-detail {
  width: 100%;
}

/* 1. Elegant Fade */
.effect-bubble {
  transform: scale(0.95);
  transform-origin: center;
}

.modal-overlay.open .effect-bubble {
  transform: scale(1);
  opacity: 1;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Professional Slide */
.effect-slide {
  transform: translateY(-20px);
}

.modal-overlay.open .effect-slide {
  transform: translateY(0);
  opacity: 1;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. Subtle Zoom */
.effect-fade {
  transform: scale(1.02);
}

.modal-overlay.open .effect-fade {
  transform: scale(1);
  opacity: 1;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 4. Smooth Rise */
.effect-flip {
  transform: translateY(20px);
  opacity: 0;
}

.modal-overlay.open .effect-flip {
  transform: translateY(0);
  opacity: 1;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 5. Corporate Reveal */
.effect-swing {
  transform: scale(0.98);
  opacity: 0;
}

.modal-overlay.open .effect-swing {
  transform: scale(1);
  opacity: 1;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more-content {
  display: block !important;
}

/* Video Banner Styles for The Address by GS Bandra */
.address-gs-video-banner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .address-gs-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
} */

/* Ensure video banner img-tag positioning */
.address-gs-video-banner .img-tag {
  /* position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: linear-gradient(
    135deg,
    rgba(236, 29, 61, 0.95),
    rgba(0, 0, 0, 0.85)
  );
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px); */
}

.flats-configuration-list svg path {
  color: #a57b24;
}

.flats-configuration-list svg {
  flex: 0 0 26px;
}

.custom-read-more-with-content {
  position: relative;
}

.custom-read-more-with-content:before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #ec1d3d;
}

.section-projects .splide__arrows.splide__arrows--ltr {
  display: none;
}

.model-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
}

.close.model-close-btn:hover {
  border: 1px solid #ec1d3d99;
}

.nowrap {
  white-space: nowrap;
}

.gallery-grid-update-last .theme-block-img {
  transform: scale(1);
}

.gg-update-last-top .theme-block {
  padding: 10px 0;
  padding-top: 0;
}

.gg-update-last-top .theme-block:first-child {
  padding-right: 5px;
}

.gg-update-last-top .theme-block:last-child {
  padding-left: 5px;
}

.gallery-grid-update {
  padding: 0px 10px;
}

.gallery-grid-update-first {
  padding: 0px 5px 0px 10px !important;
}

.column.gallery-grid-update-last {
  padding: 0 10px 0 5px !important;
}

.gallery-grid-update-first .theme-block-img {
  transform: scale(1);
}

.gallery-grid-update-cols {
  align-items: center;
}

.specifications-block h6 {
  font-size: 18px;
}

.mainscreen-award-block .swiper-slide,
.mainscreen-award-block .swiper-slider-container {
  height: 500px;
}

.sticky-btn {
  transform: unset;
  top: unset;
  bottom: 0 !important;
  right: 0;
  left: 0;
  border: 0;
  border-top: 1px solid #fff;
  border-radius: 0;
  text-align: center;
  width: 50%;
  padding: 10px 0px !important;
  gap: 10px;
}

.sticky-btn.sticky-btn-call {
  right: 0;
  left: unset;
  border-left: 1px solid;
}
.sticky-btn:hover {
  background: #ec1d3d;
  color: #ffff;
}

/* .sticky-btn:hover svg path {
  stroke: #ffffff;
} */

.investor-accordian-tab-list .tab-list {
  gap: 15px;
}

.gg-update-item.gg-update-last-top .theme-block:first-child .img-tag {
  right: 8px;
  bottom: 16px;
}

.gg-update-item.gg-update-last-top .theme-block:last-child .img-tag {
  right: 2px;
  bottom: 16px;
}

.investor-table .theme-table th {
  text-decoration: none !important;
  text-transform: unset;
  font-family: 'Jost';
  font-size: 16px;
}

.board-members-grid .columns {
  margin: 0 -20px;
}

.board-members-grid .column {
  padding: 0 20px;
}
.theme-text.disable {
  opacity: 0.5;
}
.menu-inner-child-list-1,
.menu-inner-child-list-2 {
  padding-left: 20px;
}

.section-connect-with-us {
  overflow: unset;
}
.section-investors {
  font-size: 15px;
}
.section-investors .accordion .card__title h6{
  font-size: 17px;
}