* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

.navbar {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  padding: 15px 20px;
  transition: background 0.3s ease-in-out, padding 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* 🌟 Navbar After Scrolling */
.navbar.scrolled {
  position: fixed;
  background: #07234b;
  padding: 10px 0;
}

/* 🔹 Navbar Brand */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0;
}

/* 🔹 Navbar Links */
.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link {
  position: relative;
  color: white !important;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

/* 🟡 Hover Effect - Underline Animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffcc00;
  /* Change as per your theme */
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* 🟡 Hover Effect - Text Color Change */
.navbar-nav .nav-link:hover {
  color: #ffcc00 !important;
  /* Change as per your theme */
}

/* 🔹 Navbar Scroll Effect - Color Change */
.navbar.scrolled .nav-link {
  color: #ffffff !important;
}

/* 🌟 CTA Button */
.cta-btn {
  background: white;
  color: #07234b;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.cta-btn:hover {
  background: #ffcc00;
  color: #07234b;
}

.hero-section {
  height: 100vh;
  background: url("/Assests/image-2.webp") no-repeat center center / cover;
  background-color: #07234b; /* fallback for faster paint */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  color: white;
}
.hero-content,
.hero-form {
  background: #2125295c;
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(2px);
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.hero-content .btn {
  background: #ffcc00;
  color: #07234b;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 8px;
}

.hero-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 350px;
}

.hero-form h3 {
  color: #07234b;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.hero-form .form-control {
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
}

.hero-form .btn-primary {
  background: #07234b;
  border: none;
  font-weight: bold;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
}

.feature-section {
  overflow-x: hidden;
  padding-top: 0;
  margin-top: 100px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.gallery-section {
  padding: 30px 50px;
}

.gallery-h3 {
  font-size: 4rem;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  margin-bottom: 30px;
  color: #292929;
}

.gallery-p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 2.2;
  font-family: sans-serif;
}

.gallery-slider img {
  width: 100%;
  border-radius: 10px;
}

.gallery-slider .carousel-control-prev,
.gallery-slider .carousel-control-next {
  width: 5%;
}

.carousel-controls button {
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  border: none;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 5px;
}

.carousel-controls button span {
  filter: invert(1);
  /* Make the arrow icon white */
}

.carousel-item {
  position: relative;
  overflow: hidden;
}

.carousel-item img {
  transition: transform 0.5s ease-in-out;
}

.carousel-item:hover img {
  transform: scale(1.1);
}

.property-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.carousel-item:hover .property-name {
  transform: translateY(0);
}

/* Feature CTA- BUtton */
.cta-learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 12rem;
  height: auto;
}

.cta-learn-more .cta-circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}

.cta-learn-more .cta-circle .cta-icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.cta-learn-more .cta-circle .cta-icon.cta-arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.cta-learn-more .cta-circle .cta-icon.cta-arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.cta-learn-more .cta-button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.cta-learn-more:hover .cta-circle {
  width: 100%;
}

.cta-learn-more:hover .cta-circle .cta-icon.cta-arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.cta-learn-more:hover .cta-button-text {
  color: #fff;
}

.perfect {
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-top: 50px;

}

.perfect-h2 {
  font-size: 3rem;
  color: #292929;
  font-weight: 600;
}

.property-card img {
  transition: transform 0.3s ease-in-out;
  border-radius: 10px;
}

.property-card img:hover {
  transform: scale(1.05);
}

.property-card h3 {
  font-family: auto;
  margin-top: 45px;
  font-weight: bold;
  color: #1d3b32;
  line-height: 1.75rem;
  font-size: 1.7337rem;
}

.property-card p {
  font-size: 16px;
  color: #555;
}

.btn-custom {
  border: 2px solid #1d3b32;
  color: #1d3b32;
  padding: 10px 25px;
  font-size: 18px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
  background-color: #1d3b32;
  color: white;
}

.Find {

  margin-top: 3rem;
  /* You can adjust this value as needed */
  text-align: center;

}

.badge {
  color: dimgrey;
}

.ats-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #0f3a65, #165d99, #3b86c6);
  color: #fff;
  text-align: center;
  border-radius: 20px;
}

.ats-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff, #d1e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.ats-content p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
  color: rgba(255, 255, 255, 0.9);
}

.counter-box {
  padding: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.counter-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.small-box {
  padding: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  transition: 0.3s;
  letter-spacing: 1px;
}

.small-box:hover {
  transform: scale(1.05);
}

.company-img {
  border-radius: 15px;
  width: 100%;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Number Counters */
.counter-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.counter-box p {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/*  Cards
 */
.container-custom {
  margin-top: 75px
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.custom-section-title {
  font-size: 3rem;
  color: #292929;
  font-weight: 600;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #07234b;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-header h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #ff6600;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.card-custom {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card-custom:hover {
  transform: translateY(-10px);
}

.card-custom img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-body-custom {
  padding: 30px;
  background: #fff;
  position: relative;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.card-title-custom {
  font-size: 1.2rem;
  font-weight: 600;
  color: #07234b;
  margin-bottom: 10px;
  border: 1px solid #07234b;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.card-text-custom {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.btn-custom {
  background-color: #07234b;
  color: white;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 600;
  margin-right: 15px;
  border: 2px solid #07234b;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: transparent;
  color: #07234b;
  border-color: #07234b;
}

.label-container {
  position: absolute;
  top: 20px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 1rem;
  padding: 2px 8px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0 0px 12px;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 75px;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}

/* FAQ */

/* FAQ Container */
.faq-container {
  position: relative;
  max-width: 100%;
  width: 80%;
  margin: 50px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
  color: rgb(7, 35, 75);
  text-align: center;
  overflow: hidden;
}

/* Responsive FAQ Title */
.faq-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #292929;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;

  }

  .faq-container {
    width: 90%;

  }
}

/* FAQ Box */
.faq-box {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Responsive Question Button */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: rgb(7, 35, 75);
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 14px;
    padding: 14px;
  }
}

/* Expand/Collapse Icon */
.icon {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
}

/* Answer Box */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(7, 35, 75, 0.2);
  font-size: 14px;
  color: rgb(7, 35, 75);
  line-height: 1.5;
}

.faq-box.active .faq-answer {
  max-height: 120px;
  opacity: 1;
  padding: 16px;
}

.faq-box.active .icon {
  transform: rotate(45deg);
  color: red;
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(7, 35, 75, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: 50%;
  box-shadow: 0px 5px 20px rgba(7, 35, 75, 0.3);
  animation: float 2s ease-in-out infinite;
  opacity: 0.8;
  z-index: -1;
}

@media (max-width: 768px) {
  .floating-shape {
    width: 60px;
    height: 60px;
  }
}

/* Positioning the Shapes */
.shape1 {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.shape2 {
  bottom: -20px;
  right: -30px;
  animation-delay: 2s;
}

.shape3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  animation-delay: 4s;
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0b2c55, #05172e);
  color: #fff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Footer Container */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 30px;
}

/* Right Section: Contact Form - Move to Top on Mobile */
.footer-right {
  flex: 1;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.footer-right h2 {
  font-size: 24px;
  color: #ffcc00;
  margin-bottom: 15px;
  text-align: center;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.footer-form button {
  width: 100%;
  background: #ffcc00;
  color: #07234b;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-form button:hover {
  background: #ffa500;
  transform: scale(1.05);
}

/* Left Section: Logo & Content */
.footer-left {
  flex: 1;
  max-width: 450px;
}

.footer-logo {
  width: 55%;
  margin-bottom: 15px;
}

.footer-left h2 {
  font-size: 22px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-left h3 {
  font-size: 18px;
  color: #ffa500;
  margin-top: 10px;
}

/* Social Media Icons */
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.social-icon:hover {
  background: #ffcc00;
  color: #07234b;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 12px;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
}

.disclaimer {
  max-width: 800px;
  margin: auto;
  font-size: 12px;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-left,
  .footer-right {
    max-width: 100%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column-reverse;
  }

  .footer-right {
    order: -1;
    width: 100%;
    padding: 20px;
  }

  .footer-form input,
  .footer-form textarea {
    padding: 10px;
    font-size: 13px;
  }

  .footer-form button {
    padding: 10px;
  }
}

/* Modern Underline for Button Container */
.button-container {
  padding-top: 12px;
  border-top: 1px solid grey;
}

.button {
  padding: 15px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.download-brochure {
  background: #07234b;
  color: white;
}

.download-brochure:hover {
  background: #0a2a5d;
}

.inquire-now {
  background: black;
  color: white;
}

.inquire-now:hover {
  background: #333;
}

/* Modern Spinner */
.spinner {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

@media (max-width: 768px) {
  .button-container {
    flex-direction: column;
    gap: 15px;
  }
}

.cta-section {
  background: linear-gradient(135deg, #07234b, #0a58ca);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 6s infinite;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn {
  font-size: 1rem;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.inquire-btn {
  background: #ff6600;
  color: #fff;
}

.brochure-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.brochure-btn:hover {
  background: #fff;
  color: #07234b;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .hero-form {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-form {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
    gap: 10px;
  }

  .navbar-brand {
    margin-bottom: 10px;
  }

  .gallery-section {
    padding: 40px 20px;
  }

  .gallery-h3 {
    font-size: 2rem;
  }

  .gallery-p {
    font-size: 1rem;
  }

  .property-card {
    margin-bottom: 20px;
  }

  .cta-section {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .carousel-inner {
    margin-top: 25px;
  }

  .gallery-h3 {
    font-size: 2.7rem;
  }

  .gallery-p {
    font-size: 0.9rem;
  }

  .property-card h3 {
    font-size: 1.2rem;
  }

  .property-card p {
    font-size: 0.9rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .perfect-h2 {
    font-size: 2.2rem;
  }

  .property-card h3 {
    margin-top: 20px;
  }

  .Find {

    margin-top: 0rem;
    /* You can adjust this value as needed */
    text-align: center;

  }
}

@media (max-width: 576px) {
  .navbar-nav {
    text-align: center;
  }

  .hero-section {
    padding: 10px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .carousel-inner {
    margin-top: 25px;
  }

  .gallery-h3 {
    font-size: 2.7rem;
  }

  .gallery-p {
    font-size: 0.8rem;
  }

  .feature-section {
    margin-top: 0px;
  }

  .perfect-h2 {
    font-size: 2.2rem;
  }

  .property-card h3 {
    font-size: 1rem;
  }

  .property-card p {
    font-size: 0.8rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.8rem;
  }

  .property-card h3 {
    margin-top: 20px;
  }

  .Find {

    margin-top: 0rem;
    /* You can adjust this value as needed */
    text-align: center;

  }
}

@media (max-width: 991px) {

  /* 🟢 Hide button on large screens inside navbar */
  .cta-btn {
    display: block;
    background: white;
    color: #07234b;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  .cta-btn:hover {
    background: #ffcc00;
    color: #07234b;
  }

  /* 🟢 Navbar Default Hidden - Appears on Scroll */
  .navbar {
    top: -100px;
    position: fixed;
    width: 100%;
    transition: top 0.4s ease-in-out;
  }

  .navbar.scrolled {
    top: 0;
    background: #07234b;
    padding: 2px 0;
  }

  /* 🟢 Navbar Toggler Right Align */
  .navbar-toggler {
    border: none;
  }

  /* 🟢 Navbar Dropdown Background */
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 10px;
  }

  .navbar.scrolled .navbar-collapse {
    background: #07234b;
  }
}

/* 🟢 Desktop & Tablet - Show Button Normally */
@media (min-width: 992px) {
  .cta-btn {
    display: inline-block !important;
    background: white;
    color: #07234b;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  .cta-btn:hover {
    background: #ffcc00;
    color: #07234b;
  }
}


.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 50px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: blink 1.5s infinite alternate, bounce 1.5s infinite ease-in-out;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes blink {
  0% {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
  }

  100% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 1);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.tour-button {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #07234b;
  color: white;
  padding: 25px 12px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0 10px 10px 0;
  writing-mode: vertical-rl;
  text-align: center;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.tour-button:hover {
  background: #0a3a70;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .tour-button {
    padding: 20px 8px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .tour-button {
    padding: 18px 6px;
    font-size: 14px;
  }
}


/* Modal form  */

.custom-modal {
  display: flex;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.custom-modal.show {
  opacity: 1;
  visibility: visible;
}

.custom-modal-content {
  background: #15172b;
  padding: 20px;
  border-radius: 10px;
  width: 350px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
}

.custom-modal.show .custom-modal-content {
  transform: scale(1);
}

.custom-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: white;
}

.custom-input-container {
  margin-top: 15px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.custom-input {
  width: 100%;
  padding: 12px 10px 12px 45px;
  border-radius: 8px;
  border: none;
  background: #303245;
  color: #fff;
  font-size: 16px;
  line-height: normal;
}

.custom-input-container i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 18px;
}

.custom-submit {
  margin-top: 20px;
  padding: 10px;
  background: #08d;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

.custom-download-btn {
  margin-top: 10px;
  padding: 10px;
  background: #f39c12;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

.modal-h2 {
  color: white;
}