* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-x: hidden;
}

/*nav bar*/

.top-navbar {
  background-color: #f3f3f3;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*contact items*/

.left-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.contact-item i {
  color: #ff6b00;
}

.divider {
  width: 1px;
  height: 20px;
  background-color: #ccc;
}

/*socialmedia links*/

.right-section {
  display: flex;
  gap: 12px;
}

.right-section a {
  width: 30px;
  height: 30px;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #777;
  transition: 0.3s;
}

.right-section a:hover {
  background-color: #ff6b00;
  color: white;
}

/*header*/

.main-header {
  background: #ffffff;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*logo*/

.logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
}

/*nav bar*/

.nav-menu {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}

.nav-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu {
  color: black;
}

.nav-menu a:hover {
  color: #ff6b00;
}

.nav-menu a::after {
  color: #ff6b00;
}

.schedule-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #111;
  color: #fff;
  padding: 8px 18px 8px 8px;
  border-radius: 30px;
  font-size: 14px;
  gap: 10px;
  transition: 0.3s;
  position: relative;
  top: -8px;
}

.schedule-btn:hover {
  color: #ff6b00;
}

/*banner*/

.custom-caption {
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  bottom: auto;
  right: auto;
  text-align: left;
}

.location-badge {
  background: white;
  color: black;
  padding: 6px 15px;
  font-size: 14px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
}

.highlight {
  color: #ff6b00;
  font-weight: 600;
}

.banner-title {
  font-size: 60px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

/*featured part*/

@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .floating-icon {
    left: 20px;
  }
}
.featured {
  background: #f5f5f5;
  padding: 80px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.left {
  position: relative;
  flex: 1;
}

.main-img {
  width: 100%;
  border-radius: 10px;
}

.floating-icon {
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center {
  flex: 1.2;
}

.label {
  color: #ff6b00;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.center h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
}

.info-box {
  background: #eeeeee;
  padding: 25px;
  border-radius: 10px;
}

.info-title {
  color: #ff6b00;
  font-weight: 600;
  margin-bottom: 15px;
}

.info-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.blue {
  color: #007bff;
}

.link {
  font-weight: 500;
  margin: 15px 0;
  cursor: pointer;
}

.right {
  flex: 0.9;
}

.container .card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.item {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

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

.item h4 {
  margin-bottom: 5px;
}

.item span {
  color: #777;
  font-size: 14px;
}

/*video on top of background*/

.video-section {
  background-image: url("./Images/video-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  height: 500px;
}

.small-title {
  color: orange;
  font-weight: bold;
  text-align: center;
}

.small-title-2 {
  text-align: center;
}

.video-box {
  position: relative;
  top: 50px;
  width: 1000px;
  height: 500px;
  margin: 40px auto;
}

.video-box img {
  width: 100%;
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f35525;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}

/* glowing ring around button */
.play-button::before {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: rgba(243, 85, 37, 0.3);
  z-index: -2;
}

/*stats*/

.stats {
  margin-top: 300px;
  display: flex;
  justify-content: space-around;
}

.stat {
  display: inline-block;
  background: #ffe9e3;
  padding: 20px 40px;
  margin: 40px;
  border-radius: 8px;
  position: relative;
  width: auto;
}

.stat h2 {
  color: #f35525;
  margin: 0;
  font-weight: bold;
}

.dot {
  width: 30px;
  height: 30px;
  background: #f35525;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: -8px;
}

/*best deals*/

.section {
  padding: 150px;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.small {
  color: #ff5a2c;
  font-weight: bold;
}

.buttons button {
  background: black;
  color: white;
  border: none;
  padding: 12px 5px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.buttons button:hover {
  background: #ff5a2c;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.info-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.row:last-child {
  border: none;
}

.image .deal img {
  width: 420px;
  height: 420px;
  background: #ddd;
}

.extra {
  width: 300px;
}

.extra h3 {
  margin-top: 0;
}

.visit {
  background: black;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 20px;
  cursor: pointer;
}

.visit:hover {
  background: #ff5a2c;
}

html {
  scrollbar-width: none;
}

/*properties card*/

.small-heading {
  color: #ff5a2c;
  font-weight: bold;
  position: relative;
  left: 45%;
}

.properties-title p,
h2 {
  text-align: center;
}

.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 100px;
}

.container .card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 25px;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.tag {
  background: #f1d6cc;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
}

.price {
  color: #ff5a2c;
  font-weight: bold;
  font-size: 20px;
}

.card-body h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #222;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.details span:nth-child(5) {
  grid-column: span 2;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin-bottom: 20px;
}

.container button {
  background: black;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  margin: auto;
  font-size: 14px;
}

/*contact us*/
.contact-section {
  background-image: url("./Images/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  margin-bottom:100px;
  height: 500px;
}

.map-box {
  width: 100%;
  max-width: 500px;
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-box {
  width: 100%;
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-box form {
  display: flex;
  flex-direction: column;
}

.form-box label {
  font-size: 14px;
  margin-bottom: 8px;
  margin-top: 10px;
  color: #333;
  font-weight: 500;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  background: #f5f5f5;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  margin-bottom: 10px;
}

.form-box textarea {
  height: 120px;
  border-radius: 15px;
  resize: none;
}

.form-box button {
  margin-top: 15px;
  padding: 12px 22px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 140px;
}

.form-box button:hover {
  background: #ff5a3c;
}

.contact-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: white;
  padding: 22px 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  width: 260px;
}

.icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.info-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.info-text p {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.info-phone-email {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/*footer*/

.footer {
  background: #1f1f1f;
  color: #ffffff;
  text-align: center;
  padding: 35px 20px;
  font-size: 15px;
  position: relative;
  top: 350px;
}

.footer p {
  margin: 0;
  opacity: 0.9;
}

.bg-section {
  background-image: url("./Images/page-heading-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  height: 300px;
  text-align: center;
}

.second-pageheading {
  display: inline-block;
  color: black;
  background-color: white;
  padding: 10px 15px;
  padding-bottom: 5px;
}

.banner-title2 {
  font-weight: 800;
  font-size: 60px;
  font:
    60px Arieal,
    Helvetica,
    sans-sarif;
  margin-bottom: 100px;
}

.proper-button {
  display: grid;
  justify-content: center;
}

.button-proper {
  background-color: orangered;
  border-radius: 5px;
  padding: 10px 15px;
  border: none;
  color: white;
}

.pro-button {
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
}

.pro-buttons {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: black;
  color: white;
  border: none;
}

.container-single {
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-content: space-between;
  column-gap: 30px;
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 0 100px;
}

.main-img-single {
  width: 100%;
  height: auto;
}

.head-single {
  margin-left: 100px;
  margin-right: 500px;
}

.single-app {
  display: inline-block;
  background-color: #c8a287;
  border-radius: 5px;
  padding: 10px;
  padding-bottom: 5px;
}

.single-add h2 {
  text-align: left;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
}

.accordion-button::after {
  display: none !important;
}

.accordion-button:not(.collapsed)::after {
  display: none !important;
}

.parent-con {
  margin-left: 100px;
  margin-right: 100px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  margin-bottom: 80px;
}

.title-con {
  color: orangered;
}

.subtitle-con {
  text-align: left;
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 56px;
  font-weight: 700;
  text-transform: capitalize;
}

.child1-con {
  display: flex;
  flex-direction: column;
}

.contact-info-con {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.map-container {
  width: 85%;
  height: 520px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
}

.footer-con {
  background: #1f1f1f;
  color: #ffffff;
  text-align: center;
  padding: 35px 20px;
  font-size: 15px;
  margin-top: 140px;
}

.footer-con p {
  margin: 0;
  opacity: 0.9;
}

.footer-single {
  background: #1f1f1f;
  color: #ffffff;
  text-align: center;
  padding: 35px 20px;
  font-size: 15px;
}

.footer-single p {
  margin: 0;
  opacity: 0.9;
}

.footer-pro {
  background: black;
  color: white;
  text-align: center;
  padding: 35px 20px;
  font-size: 15px;
  position: relative;
  top: 70px;
}

.footer-pro p {
  margin: 0;
  opacity: 0.9;
}

.container-single .item {
  padding-left: 50px;
}

/* contact form changes*/

.child1-con,
.child2-con {
  flex: 1;
}

/*map changes*/

.maps {
  margin-top: 40px;
}

/* Responsive page changes */

img {
  max-width: 100%;
  height: auto;
}

.video-box {
  width: 100%;
  max-width: 1000px;
  height: auto;
}

.video-box img {
  width: 100%;
}

/* Featured section */

@media (max-width: 992px) {
  .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .left,
  .center,
  .right {
    width: 100%;
  }

  .center h2 {
    font-size: 28px;
  }
}

/* Stat section */

@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
  }

  .stat {
    width: 80%;
    margin: 15px 0;
  }
}

/* Best Deal section */

@media (max-width: 992px) {
  .section {
    padding: 60px 20px;
  }

  .top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .info-box,
  .extra {
    width: 100%;
  }
}

/* Properties Card */

.container {
  grid-template-columns: repeat(3, 1fr);
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Contact Form */

@media (max-width: 992px) {
  .map-box {
    width: 100%;
    left: 0;
    top: 0;
    margin-bottom: 30px;
  }

  .form-box {
    width: 100%;
    left: 0;
    top: 0;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-section {
    height: auto;
    padding: 60px 20px;
  }

  @media (max-width: 768px) {
    .parent-con {
      flex-direction: column;
    }

    .child1-con,
    .child2-con {
      width: 100%;
    }

    .subtitle-con {
      font-size: 32px;
      line-height: 42px;
    }
  }
}

/* Nav Bar */

@media (max-width: 768px) {
  .top-navbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .main-header {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .schedule-btn {
    top: 0;
  }

  .banner-title {
    font-size: 36px;
  }
}

/* Property details changes for responsive */

/* ===== SINGLE PROPERTY SECTION ===== */

.container-single {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 0 80px;
}

@media (max-width: 992px) {
  .container-single {
    grid-template-columns: 1fr;
    padding: 0 30px;
  }

  .right {
    margin-top: 30px;
  }
}

/* ===== PROPERTY TEXT SECTION ===== */

.head-single {
  margin-left: 100px;
  margin-right: 100px;
}

@media (max-width: 992px) {
  .head-single {
    margin-left: 30px;
    margin-right: 30px;
  }
}

/* ===== BEST DEAL SECTION ===== */

.section {
  padding: 100px 80px;
}

@media (max-width: 992px) {
  .section {
    padding: 60px 20px;
  }

  .top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .content {
    flex-direction: column;
    gap: 30px;
  }

  .info-box,
  .extra {
    width: 100%;
  }

  .image.deal img {
    width: 100%;
    height: auto;
  }
}

/* ===== NAVBAR ===== */

@media (max-width: 768px) {
  .top-navbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .main-header {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

/* ===== BANNER ===== */

@media (max-width: 768px) {
  .banner-title2 {
    font-size: 36px;
  }

  .bg-section {
    height: auto;
    padding: 60px 20px;
  }
}

/* ===== IMAGE FIX ===== */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== BUTTON GROUP ===== */

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ===== CARD INFO ===== */

.info-box {
  width: 100%;
  max-width: 400px;
}

/* ===== EXTRA SECTION ===== */

.extra {
  max-width: 400px;
}

/* Home page accordion change */

/* FEATURED ACCORDION FIX */

.info-box .accordion-item {
  border: none;
  background: white;
  border-bottom: 1px solid #ddd;
}

.info-box .accordion-button {
  background: white;
  color: #222;
  font-weight: 600;
  box-shadow: none;
  padding: 15px;
}

.info-box .accordion-button:not(.collapsed) {
  background: white;
  color: #ff6b00;
  box-shadow: none;
}

.info-box .accordion-body {
  background: white;
  font-size: 14px;
  line-height: 1.6;
}

/* remove bootstrap arrow */
.info-box .accordion-button::after {
  display: none;
}

/* map box and form box change */

.contact-container {
display:flex;
justify-content:center;
gap:40px;
align-items:flex-start;
flex-wrap:wrap;
margin-top:-150px;
position:relative;
z-index:2;

}

.map-box {
width:100%;
max-width:600px;

}

.form-box {
  width: 450px;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 50px;
}

.map-area {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 500px;
  width: 100%;
}

.map-box {
  width: 100%;
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.info-card {
  flex: 1;
}

/* nav link highlight */

.nav-link {
  text-decoration: none;
  color: black;
  padding: 10px 15px;
}

.nav-link.active {
  color: #ff6b00;
  font-weight: 600;
}


body{
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

footer{
  margin-top:auto;
}