html,
body {
  overflow-x: hidden !important;
}

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

.navbar-brand img {
  height: 40px;
}

.text-blue {
  color: #274f99;
}

.btn-add-listing {
  background-color: #274f99 !important;
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
  border: 1px solid #274f99 !important;
  font-weight: 600;
  transition: linear 400ms;
}

.btn-add-listing:hover {
  background-color: #ffffff !important;
  border: 1px solid #274f99 !important;
  color: #274f99 !important;
  transition: linear 400ms;
}

.banner-section {
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-track {
    animation-duration: 10s;
    /* Faster on smaller screens */
  }
}

.counter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.counter-box {
  padding: 30px;
  flex: 1;
  margin: 10px;
  text-align: center;
  position: relative;
}

.counter-box h2 {
  font-size: 32px;
  color: #274f99;
  margin: 0;
}

.counter-box p {
  font-size: 16px;
  color: #333;
  margin-top: 5px;
  font-weight: bold;
}

/* Separators */
.counter-box:not(:last-child) {
  border-right: 2px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .counter-container {
    flex-direction: column;
  }

  .counter-box {
    border-right: none;
    width: 100%;
  }

  .fs-20px {
    font-size: 17px !important;
  }
}

p {
  font-size: 18px;
}

.border-radius-20 {
  border-radius: 20px;
}

.bg-project {
  background: url('img/bg-projects.png')no-repeat center;
  background-size: cover !important;
}

body {
  background-color: #fff;
  height: 100%;
}

.preloader-container {
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #274f99;
  z-index: 1000;

}

.preloader-container.active_new {
  -webkit-transform: translateY(-100vh);
  transform: translateY(-100vh);
  -webkit-transition: ease-in-out 2s;
  transition: ease-in-out 2s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.preloader-text {

  font-size: 90px;
  /* opacity: 0; */
  /* animation: fadeInLetter 1s forwards,  scaleIn 1s forwards; */
  top: 40%;
  height: 500px;
  position: absolute;
  width: 100%;
  /* left: 50%; */
  margin: auto;
  text-align: center;
}

.slide-left {
  opacity: 0;
  transform: translateX(100px);
  animation: slideLeft 1.5s ease-out forwards;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-right {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideRight 1.5s ease-out forwards;
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1.5s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for individual letters */
.preloader-text span {
  opacity: 0;
  animation: topToBottom 10s forwards;
  transform-origin: center;
  /* Set the transform origin to the center of each letter */
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInLetter {
  0% {
    opacity: 0;
    transform: scale(0.8);
    /* Start with a slightly smaller scale */
  }

  100% {
    opacity: 1;
    transform: scale(1);
    /* End with the original scale */
  }
}

@keyframes topToBottom {
  0% {
    transform: translateY(-100%);
    /* Start position above the viewport */
  }

  100% {
    transform: translateY(0);
    /* End position at the center of the viewport */
  }
}

/* Add scale-in animation */
@keyframes scaleIn {
  0% {
    transform: scale(0.8);
    /* Start with a slightly smaller scale */
  }

  100% {
    transform: scale(1);
    /* End with the original scale */
  }
}

/* Add fade-out animation */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* Add expandWidth animation */
@keyframes expandWidth {
  0% {
    width: auto;
    /* Start with auto width */
  }

  100% {
    width: 100%;
    /* End with full width */

    letter-spacing: 20px;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  font-size: 2rem;
  font-weight: bold;
  animation: slideInRight 1s ease-out;
}

.fs-46px {
  font-size: 46px !important;
}

.padding-sec2 {
  padding-top: 80px;
  padding-bottom: 24px;
}

.shadow-blue {
  box-shadow: -50px 43px 0px 0px #274f99;
}

.slide-in {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideIn 1s ease-out forwards !important;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hr-line {
  width: 130px;
  border-bottom: 2px solid #274f99;
}

.slide-in-text {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mission-icon {
  top: -55px;
  left: 165px;
  padding: 15px;
  border: 2px solid #ffffff !important;
  border-radius: 50px !important;
  background: #274f99;
}

.bg-purple {
  background: #274f99;
}

.pt-55px {
  padding-top: 55px !important;
}

.border-bottom {
  border-bottom: 3px solid #274f99 !important;
}

.box-shadow {
  box-shadow: 2px 8px 20px 0px rgba(125, 125, 125, 0.23) !important;
}

.card-mission {
  background: #274f99 !important;
  color: rgb(255, 255, 255);
  box-shadow: 2px 8px 20px 0px rgba(125, 125, 125, 0.23) !important;
  transform: translateY(-10px);
  transition: linear 400ms;
}

.card-mission:hover {
  border-bottom: 3px solid #274f99 !important;
  color: black !important;
  background: white !important;
}

.pb-100px {
  padding-bottom: 140px;
}

.pt-90px {
  padding-top: 90px;
}

.pb-90px {
  padding-bottom: 90px;
}

.fs-20px {
  font-size: 20px !important;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #8db5ff47;
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:focus {
  border-color: none;
  outline: none;
  box-shadow: none;
}

.bg-plot {
  background: url('img/bookaplot.png')no-repeat center !important;
  background-size: cover !important;
}

.fs-4rem {
  font-size: 3.5rem;
}

.w-80 {
  width: 80% !important;
}

.w-20 {
  width: 20% !important;
}

.border-radius-60 {
  border-radius: 60px !important;
}

.p-50px {
  padding: 20px !important;
}

.padding-bookplot {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.bg-download {
  background-color: orange;
  border: 1px solid orange;
}

.card-features:hover {
  box-shadow: 2px 8px 20px 0px rgba(125, 125, 125, 0.23) !important;
  transform: translateY(-10px);
  transition: linear 300ms;
}

.btn-add-listing1:hover {
  background-color: #274f99;
  color: white;
  border-radius: 10px;
  border: 1px solid #274f99;
  transition: linear 400ms;
}

.btn-add-listing1 {
  background-color: #ffffff;
  border: 1px solid #274f99;
  color: #274f99;
  transition: linear 400ms;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 30px 30px;
  background-image: url('https://adissia.com/img/gfx/bg-pattern.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer p,
.footer li {
  color: #ccc;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer li i {
  color: #fff;
  margin-right: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 9px;
  font-size: 18px;
  color: white;
  background-color: #004aad;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
  width: 15%;
  height: 50px;
  text-align: center;
}

.social-icons a:hover {
  background-color: #fff;
  color: #004aad;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
}

.footer-bottom .member {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
}

.footer-bottom .member img {
  max-height: 40px;
  vertical-align: middle;
  margin-left: 10px;
}

.w-80 {
  width: 80% !important;
}

/* Desktop view (default) */
.bg-amenities {
  background: url('img/amenities-bg.webp') no-repeat center !important;
  background-size: cover !important;
  height: 477px;
}

/* Mobile view */
@media (max-width: 767px) {
  .bg-amenities {
    background: url(img/Amenities-banner-mobile.webp) no-repeat center !important;
    background-size: cover !important;
    height: 672px !important;
  }
}

.contact-section {
  padding: 60px 0;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
}

.contact-title span {
  color: #274f99;
}

.contact-subtext {
  font-weight: 500;
  color: #222;
  margin-bottom: 30px;
}

.form-control,
.form-select {
  padding: 12px 16px;
  border-radius: 5px;
  border: 1px solid #ced4da;
}

.form-control:focus,
.form-select:focus {
  border-color: #274f99;
  box-shadow: none;
}

.send-btn {
  background-color: #274f99;
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  font-weight: 600;
}

.send-btn:hover {
  background-color: #1f3f7c;
}

.map-container {
  position: relative;
}

.map-wrapper {
  box-shadow: 250px 0px 0px 35px #274f99 !important;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 0 0 20px;
}

.contact-info i {
  color: #000;
  font-size: 18px;
  margin-right: 8px;
}

.contact-info span {
  color: #e60023;
  font-weight: bold;
}

.box-margin {
  margin: 3rem auto;
}

.box-margin-1 {
  margin: 2rem auto;
}

.map-margin {
  margin: 3rem 0rem;
}

.contact-heading {
  font-family: "Jost";
  font-size: 3rem;
  font-weight: 700;
  line-height: 4rem;
  color: #000000;
}

.contact-paragraph {
  font-family: "Jost";
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: #000000;
}

.contact-button {
  border: none;
  background-color: #274f99;
  color: white;
  width: 100%;
  font-family: "Jost";
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2rem;
  padding: 1rem;
}

.color-red {
  color: #DD5471;
}

.center-align {
  margin: auto;
  margin-right: 0.1rem;
}


@media only screen and (min-width: 64rem) {
  .bg-contact {
    background: linear-gradient(to right, white 0%, white 70%, #274f99 70%, #274f99 100%);
  }

  .center-align {
    margin: auto;
    margin-right: 1rem;
  }
}

.text-yellow {
  color: #fff3d0 !important;
}

.left-100px {
  left: 118px;
}

.fs-55px {
  font-size: 55px !important;
}

@media (min-width: 926px) and (max-width: 1200) {
  .carousel-indicators-middle {
    right: 680px !important;
  }
}

.carousel-item {
  height: 80vh;
  background-size: cover;
  background-position: center;
}

.form-container {
  position: absolute;
  top: 55%;
  right: 50px;
  transform: translateY(-50%);
  background: rgb(255 255 255 / 70%);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 61%);
  width: 430px;
  z-index: 1000;
  right: 51px;
}

.form-container h3 {
  text-align: center;
  color: #004aad;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.checkbox-group {
  font-size: 12px;
  margin-bottom: 10px;
}

.submit-btn {
  background: #274f99 !important;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #274f99 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .form-container {
    width: 90%;
    right: 5%;
  }
}

.Get-in-touch {
  background: url('img/solutions-bg-dots.png')no-repeat center;
  background-size: cover !important;
}

@media (max-width: 1600px) and (max-height: 900px) {
  .bg-amenities {
    height: 395px !important;
    /* Adjust as needed */
  }

  .carousel-indicators-middle {
    right: 790px !important;
  }
}

@media (max-width: 1536px) and (max-height: 960px) {
  .bg-amenities {
    height: 382px;
    /* Adjust as needed */
  }

  .carousel-bg1 {
    background-image: url('img/echo-valley-bg\ .webp');
    height: 69vh !important;
    background-size: cover;
    background-position: center;
  }



  .carousel-indicators-middle {
    right: 690px !important;
  }

  .form-container {
    right: 44px !important;
  }

  .fs-46px {
    font-size: 40px !important;
  }

  .fs-4rem {
    font-size: 2.5rem;
  }

  .padding-bookplot {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .form-container {
    top: 55%;
    transform: translateY(-50%);
    padding: 15px;
    width: 336px;
  }

  .form-container h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .form-group {
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 6px 10px;
    font-size: 0.95rem;
  }

  .checkbox-group {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .submit-btn {
    padding: 8px;
    font-size: 0.95rem;
  }

  .form-container * {
    line-height: 1.3;
  }

  .carousel-item {
    height: 67vh;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

  .bg-amenities {
    height: 250px !important;
  }
}

@media (max-width: 767px) {
  .fs-46px {
    font-size: 28px !important;
  }

  .fs-5 {
    font-size: 1.10rem !important;
  }

  .fs-4rem {
    font-size: 1.5rem;
  }

  .w-75 {
    width: 100% !important;
  }

  .w-8 {
    width: 24% !important;
  }

  .w-8px {
    width: 14% !important;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #138126;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

.w-8 {
  width: 8%;
}

.w-8px {
  width: 8%;
}

.carousel-bg1 {
  background-image: url('img/echo-valley-bg\ .webp');
  height: 75vh;
  background-size: cover;
  background-position: center;
}

/*.carousel-bg2 {
  background-image: url('img/Address-Banner.webp');
  height: 80vh;
  background-size: cover;
  background-position: center;
}*/

.ts-carousel {
  position: relative;
  overflow: hidden;
}

.ts-carousel-inner {
  display: flex;
  transition: transform 0.6s ease-in-out;


  width: 100%;
}

.ts-carousel-item {
  min-width: 100%;
  padding: 20px 0;
}

.ts-card {
  background: #274f991f;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.ts-stars {
  color: #ffc107;
}

.ts-meta {
  font-size: 0.85rem;
  color: #777;
}

.ts-control-btn {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.ts-prev {
  left: 10px;
}

.ts-next {
  right: 10px;
}

.fs-26px {
  font-size: 26px !important;
}

.toast {
  max-width: 400px !important;
  font-size: 16px !important;
  margin-bottom: 20px !important;
}

.mt-5rem {
  margin-top: 5rem !important;
}

.zindex-toast {
  z-index: 1060 !important;
  /* Above modals if needed */
}

.error-tooltip {
  display: none;
  color: red;
  font-size: 12px;
  position: absolute;
  top: 30px;
  left: 0;
}

.form-group {
  position: relative;
}

.email-error {
  font-size: 0.85rem;
  color: red;
  margin-top: 5px;
}

:root {
  --primary-blue: #0055b3;
  --secondary-yellow: #FFB800;
  --dark-gray: #333333;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
}



/* Real Estate Background Animation */
.projects-section {
  position: relative;
  background-color: var(--light-gray);
  background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
  background-size: 25px 25px;
  overflow: hidden;
  padding: 4rem 0;
}

.bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.05;
}

.bg-animation svg {
  position: absolute;
}

.blueprint {
  width: 200px;
  height: 200px;
  animation: float 12s infinite ease-in-out;
}

.house-icon {
  width: 150px;
  height: 150px;
  animation: float 15s infinite ease-in-out;
  animation-delay: 2s;
}

.key-icon {
  width: 100px;
  height: 100px;
  animation: float 10s infinite ease-in-out;
  animation-delay: 5s;
}

.compass-icon {
  width: 120px;
  height: 120px;
  animation: float 14s infinite ease-in-out;
  animation-delay: 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.section-heading {
  position: relative;
  margin-bottom: 2.5rem;
}

.projects-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}


.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-img {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.project-img img {
  width: 100%;
  height: 124%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  z-index: 10;
}

.project-badge::before {
  content: "UPCOMING";
  position: absolute;
  width: 160px;
  left: -40px;
  top: 25px;
  transform: rotate(-45deg);
  background-color: var(--secondary-yellow);
  color: #000000;
  text-align: center;
  font-weight: 700;
  padding: 6px 0;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  opacity: 0.8;
}

.project-content {
  padding: 1.2rem 1.5rem;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.1rem;
}

.project-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--primary-blue);
}

.arrow-icon {
  font-size: 2rem;
  transition: transform 0.3s ease;
  color: black;
}

.project-card:hover .arrow-icon {
  transform: translateX(5px);
}

.location {
  color: #555;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.location i {
  margin-right: 8px;
  color: var(--primary-blue);
}

.project-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #e0e0e0;
}

.info-item {
  display: flex;
  align-items: center;
}

.info-icon {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.info-details {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 1rem;
  text-transform: uppercase;
  color: #777;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.border-bottom-2 {
  border-bottom: 2px solid rgb(217, 216, 216);
}

.info-value {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

.plot-size {
  display: flex;
  align-items: center;
}

.plot-range {
  align-items: center;
}

.plot-range span {
  margin: 0 0.2rem;
}

.project-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.project-btn {
  padding: 1rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-view {
  color: var(--primary-blue);
  background-color: transparent;
}

.btn-view:hover {
  background-color: rgba(0, 85, 179, 0.1);
}

.btn-download {
  background-color: #555555;
  color: white;
  padding: 15px;
}

.btn-download:hover {
  background-color: #000;
}

.btn-enquire {
  color: #ffffff;
  background-color: #0055b3;
}

.btn-enquire:hover {
  background-color: rgb(0 85 179 / 86%);
}

/* Animation for numbers */
.count-animation {
  transition: transform 0.3s ease;
}

.project-card:hover .count-animation {
  color: var(--primary-blue);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .projects-container {
    padding: 0 1rem;
  }

  .project-buttons {
    justify-content: space-around;
  }

  .project-btn {
    padding: 0.5rem 0.7rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 767px) {
  .project-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .info-item {
    width: 48%;
  }

  .project-img {
    height: 200px;
  }

  .project-buttons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .project-btn {
    flex: 1;
    min-width: 30%;
    white-space: nowrap;
    padding: 0.5rem 0.5rem;
    font-size: 0.7rem;
  }
  .highlights {
    padding: 35px 0 !important;
    background: #9f9f9f0a;
}
}

@media (max-width: 480px) {
  .project-buttons {
    flex-direction: column;
  }

  .project-btn {
    width: 100%;
  }

  .info-item {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .plot-range {
    flex-direction: column;
    align-items: flex-start;
  }
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2.5rem;
  background-color: var(--white);
  height: 95%;
  position: relative;
  z-index: 1;
}

.sold-out-watermark {
  position: absolute;
  top: 20px;
  left: -40px;
  transform: rotate(-45deg);
  background-color: rgba(255, 0, 0, 0.8);
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 50px;
  z-index: 2;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  opacity: 0.8;
}

.project-img {
  position: relative;
}

.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.crimson-text-regular {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff !important;
  text-decoration: none;
}

.text-muted1 {
  --bs-text-opacity: 1;
  color: rgb(255 255 255 / 75%) !important;
}

footer {
  background-color: #1f2328;
}

footer h5,
footer h6 {
  font-weight: 600;
}

footer p {
  font-size: 14px !important;
  margin: 0 0 5px;
}

.text-warning1 {
  color: #f39c12 !important;
}

.footer a {
  color: white !important;
  text-decoration: underline;
}

.right-column-bg {
  background-color: #264d3c;
  /* Replace with your actual green shade */
  padding: 40px 20px;
  height: 100%;
}

.map-wrapper {
  background: #fff;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.full-height {
  min-height: 100vh;
}

:root {
  --marquee-width: 100vw;
  --marquee-height: 30vh;
  --marquee-elements-displayed: 4;
  /* fewer = larger images */
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 5s);
}

.marquee {
  width: 100%;
  height: var(--marquee-height);
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
  gap: 0;
  /* removes space between li */
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  padding: 0;
  margin: 0;
}

.marquee-content li img {
  width: 100%;
  object-fit: cover;
  border: none;
}

.marquee {
  width: 100%;
  height: var(--marquee-height);
  background-color: #ffffff;
  color: #eee;
  overflow: hidden;
  position: relative;
}

.marquee:before,
.marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

.marquee:before {
  left: -125px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
}

.marquee:after {
  right: -125px;
  background: linear-gradient(to left, #ffffff 0%, #ffffff 100%);
}

.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4);
  white-space: nowrap;
}

.marquee-content li img {
  width: 100%;
  border: 6px solid #ffffff;
}

@media (max-width: 600px) {
  html {
    font-size: 12px;
  }

  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }

  .marquee:before,
  .marquee:after {
    width: 5rem;
  }
}

/* Container for each image + caption */
.marquee-box {
  display: flex;
  align-items: center;
  text-align: center;
}

/* Caption style */
.caption {
  font-size: 1rem;
  color: #1e3a1e;
  font-family: 'Georgia', serif;
}

/* Pause animation on hover (desktop) or touch (mobile) */
.marquee:hover .marquee-content,
.marquee:active .marquee-content {
  animation-play-state: paused;
}

.top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
}

.info-box {
    background-color: #274f99;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
}

.logo-title {
  text-align: center;
}

.logo-title img {
  height: 95px;
}

.logo-title h1 {
  font-family: 'Comic Sans MS', cursive;
  font-weight: bold;
  color: #1c1c1c;
  margin-top: 5px;
}

.site-layout {
  text-align: center;
  margin-top: 30px;
  position: relative;
}

.site-layout img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.compass {
    position: absolute;
    top: 20px;
    right: -10%;
    width: 125px;
}

/* Highlights Section */
.highlights {
  padding: 100px 0;
  background: #9f9f9f0a;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 60px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.highlight-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.highlight-card:hover {
  transform: translateY(-10px);
}

.highlight-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.highlight-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.highlight-card {
  background: white;
  padding: 40px 30px !important;
  border-radius: 20px !important;
  text-align: center !important;
  transition: transform 0.3s ease !important;
  border-top: 4px solid #274f99;
  box-shadow: 0px 5px 23px 0px #0000002e;

}