* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background-color: rgb(252, 252, 252);
  cursor: pointer;
  width: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 100;
}

header {
  width: 100%;
}

.nav-div {
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
}

.icons,
.social-icons,
.icon1,
.icon2 {
  display: flex;
  gap: 10px;
  color: rgb(35, 68, 42);
  align-items: center;
}

.fa {
  font-size: 20px;
}

.oneicon {
  border: 2px solid transparent;
  padding: 5px;
  border-radius: 1000px;
  background-color: rgb(0, 0, 0);
  color: antiquewhite;
  height: auto;
  transition: all 0.3s ease;
  width: auto;
}

/* Navigation */
nav {
  width: 100%;
  background-color: bisque;
  padding: 10px;
  flex-wrap: wrap;
}

.head-section {
  display: flex;
  justify-content: space-around;
  height: 70px;
  align-items: center;
}

.villaname {
  font-family: "Dancing Script", cursive;
  font-size: 45px;
}

ul {
  gap: 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

li {
  list-style: none;
  padding: 2px;
  color: rgb(11, 11, 11);
}

li:hover {
  color: rgb(141, 172, 19);
  text-decoration: underline;
}

a {
  text-decoration: none;
  color: inherit;
}

.button {
  padding: 5px 12px;
  border-radius: 1000px;
  border: 1px solid rgb(28, 29, 28);
  width: 170px;
  height: 33px;
  position: relative;
  background-color: black;
  color: white;
  cursor: pointer;
}

.button::before {
  content: "🗓️";
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 22px;
  border-radius: 1000px;
  background-color: rgb(227, 149, 71);
  width: 28px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.section-hero {
  height: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1681465766418-6474cfdcbb3c?q=80&w=1400&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero {
  text-align: center;
  margin-bottom: 20px;
}

.villa {
  color: rgb(255, 255, 255);
  font-size: 70px;
  margin: 0;
  line-height: 1.1;
}

h4.Canada {
  border: 1px solid black;
  color: black;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 20px;
  background-color: rgb(255, 255, 255);
  text-align: center;
}

span.city {
  color: rgb(240, 138, 36);
}

/* Main Content Section */
.section1 {
  background-color: #ffffff;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.img-div {
  flex: 0 0 300px;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

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

.details {
  flex: 1;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 40px;
}

.area {
  flex: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.details {
  padding: 40px;
  flex: 1;
}

.box1 {
  margin-bottom: 30px;
}

.featured {
  margin-bottom: 20px;
}

.google {
  border-left: 5px solid #f39c12;
  padding-left: 15px;
  color: #f39c12;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.best {
  font-size: 42px;
  font-weight: bold;
  color: #2c3e50;
  line-height: 1.2;
  margin: 5px 0;
}

.box2 h1.google {
  color: #2c3e50;
  border-left: none;
  padding-left: 0;
  font-size: 24px;
  margin-bottom: 20px;
}

.box2 h5 {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: normal;
}

.google1 {
  color: #f39c12;
  font-weight: bold;
}

.box2 hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 15px 0;
}

/* Feature Boxes */
.area {
  display: flex;
  flex-wrap: wrap;
  background-color: #f8f9fa;
}

.feature-box {
  flex: 1;
  padding: 25px 20px;
  text-align: center;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-box:hover {
  background-color: #f39c12;
  color: white;
  transform: translateY(-2px);
}

.feature-box h5 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-box:hover h5 {
  color: white;
}

.feature-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.feature-box:hover p {
  color: white;
}

.feature-box i {
  margin-right: 8px;
  color: #f39c12;
}

.feature-box:hover i {
  color: white;
}
/* section 2 */

.section2 {
  height: 800px;
  width: 100%;
  background-color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.video {
  background-color: #8f912f;
  padding: 10px;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-image: url("https://images.pexels.com/photos/18659795/pexels-photo-18659795.jpeg");
  background-repeat: no-repeat;

  background-size: cover;
  position: relative;
}
.videoinfo {
  display: flex;
  height: 400px;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.mainvideo {
  background-color: #f39c12;

  position: absolute;
}

.videoinfo1 {
  align-items: center;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.videoinfo2 {
  padding: 20px;

  display: flex;

  gap: 20px;
  justify-content: space-evenly;
  align-items: center;
}

.num {
  border: 1px solid olive;
  background-color: #f5f6dd;
  padding: 20px;
  margin: 10px auto;
  text-align: center;
  box-shadow: 0 2px 10px black;
  border-radius: 10px;

  width: 200px;
  display: flex;
  justify-self: start;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}
.num:hover {
  transform: scale(1.02);
}

.num::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: #d12626;
  border-radius: 100%;
  top: -10px;
  right: -10px;
}

/* section 3 */

.section3 {
  height: 700px;
  width: 100%;
  background-color: rgb(243, 234, 234);
  flex-wrap: wrap;
  overflow: hidden;
}

.deal {
  padding: 40px;

  display: flex;
  font-size: 24px;
  justify-content: space-around;
  align-items: center;
}
.house {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  align-items: center;
}

.appartment {
  font-size: 15px;
  width: 120px;
  text-align: center;
  padding: 10px;
  background-color: #000000;
  color: rgb(255, 255, 255);
}

.appartment:first-child {
  background-color: #90fb62;
  color: black;
}

.infoplot {
  margin: 10px auto;

  width: 100%;

  align-items: center;
}
.space1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  gap: 20px;
}
.space {
  height: 450px;
  width: 350px;
  background-color: #fdfdfd;
  border: 1px solid rgb(236, 227, 227);
  box-shadow: 0px 0px 40px black;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
  transition: all 0.3s ease;
}

.space:hover {
  transform: scale(1.02);
}

.nospace {
  padding: 20px;
  gap: 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

img {
  height: 450px;
  width: 350px;
  object-fit: cover;
  box-shadow: 0px 0px 20px black;
}
hr {
  width: 80%;
  margin: 0px auto;
  border: none;
  height: 2px;
  background-color: #ffe5e570;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6); /* soft glow effect */
}
.room,
.room2 {
  font-size: 20px;
}

/* section  4 */

.section4 {
  height: 100%;
  width: 100%;
  background-color: #e2d2d2;
  margin: 0px auto;
  margin-top: 0;
  padding-top: 0;
}

.properties {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.youlike {
  font-size: 40px;
}

.money {
  color: rgba(255, 166, 0, 0.726);
}

.title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.bed h4,
.villa h6,
.money,
.hehe {
  font-size: 14px;
}

.bed {
  display: flex;
  gap: 20px;
  font-weight: 300;
}

.table {
  flex: 1 1 300px;
  max-width: 320px;
  min-width: 260px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  color: #000;
  padding: 15px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.table:hover {
  transform: scale(1.03);
}

h1,
h4 {
  color: #000000;
}

.hehe {
  color: black;
  font-size: 20px;
  font-weight: 200;
  border: 1px solid saddlebrown;
  padding: 10px;
  border-radius: 10px;
  background-color: #eee;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.villa {
  display: flex;
  align-items: center;
  justify-content: space-around;

  gap: 80px;
}

.maintable {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

.img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
}

.button1 {
  border: 1px solid black;
  padding: 10px 15px;
  border-radius: 10px;
  color: #eee;
  background-color: #000000;
}

/*  section 5 */

.section5 {
  width: 100%;
  background-color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.touch {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 80px 20px;
}

.contactus h4 {
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.getin h5 {
  font-size: 22px;
  font-weight: 400;
}

.form {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: -100px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.main {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 400px;
}

.main label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.main input,
.main textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #cc1818;
  font-size: 14px;
  resize: none;
}

.main textarea {
  height: 200px;
}

.submit {
  background-color: #222;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.submit:hover {
  background-color: #444;
}

.map iframe {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 400px;
  height: 300px;
}

footer {
  height: 100%;
  padding: 20px;
  text-align: center;
  width: 100%;
  background-color: #000;
  color: white;
}

.sectionhero {
  height: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1681465766418-6474cfdcbb3c?q=80&w=1400&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.prop {
  display: flex;
  justify-content: space-evenly;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.all {
  background-color: #d9dde1;
  padding: 5px;
  font-size: 20px;
  border: 1px solid black;
  font-weight: 200;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.all:hover {
  transform: scale(1.05);
  background-color: hsl(61, 51%, 38%);
}
.all:first-child {
  background-color: hsl(61, 51%, 38%);
}

.all:first-child:hover {
  background-color: hsl(0, 0%, 95%);
  color: #000;
}

.nums {
  padding: 10px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.num1 {
  color: #ccc;
  background-color: #000;
  border: 1px solid black;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0;
  text-align: center;
  line-height: 30px;
  transition: all 0.3s ease-in;
}

.num1:hover {
  background-color: white;
  transform: scale(1.06);
  border: none;
  color: #000;
}
.section6 {
  background-color: #bb5454;
  padding: 60px 20px;
}

.section6 .container {
  max-width: 1200px;
  margin: 10 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;

  padding: 20px;
}

.property-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section6 .img-div {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.section6 .img-div img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.property-info-section {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 30px;
}

.property-badge {
  display: inline-block;
  margin-bottom: 15px;
}

.property-badge span {
  background-color: #f39c12;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.property-title {
  font-size: 28px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.3;
}

.property-description {
  margin-bottom: 30px;
}

.property-description p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 15px;
}

.expandable-sections {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.section-item {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-item:hover {
  background-color: #f9f9f9;
  padding-left: 10px;
}

.section-item h5 {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.section-item p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.property-right {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-card {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 50px;
  height: 50px;
  background-color: #f39c12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  color: white;
  font-size: 20px;
}

.card-content h6 {
  margin: 0 0 5px 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.card-content p {
  margin: 0;
  color: #666;
  font-size: 13px;
}
.newagents {
  height: 400px;
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 10px;
}
.agents {
  font-size: 25px;
  font-weight: 800;
  padding: 10px;
}

.form1 {
  margin-top: 0px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;

  padding: 40px 20px;
  flex-wrap: wrap;
}
.tel {
  margin: 10px;
  text-align: center;
  height: 50px;
  width: 200px;
  background-color: #000;
  border: 1px solid rgb(255, 255, 255);
  color: #fffcfc;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.twobuttons {
  align-items: center;
  display: flex;
  padding: 20px;
  gap: 3px;
  flex-direction: column;
}
.map1 {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  display: flex;

  margin-bottom: 70px;
}
/* Responsive Styles */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    gap: 20px;
  }

  .img-div {
    flex: none;
    height: 250px;
  }

  .area {
    flex: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .feature-box {
    flex: 1 1 45%;
    min-width: 120px;
  }

  .videoinfo2 {
    flex-direction: column;
  }
  .deal {
    flex-direction: column;
    font-size: 13px;
  }
  .house {
    gap: 10px;
    margin-top: 10px;
  }
  .infoplot {
    flex-direction: column;
    padding: 10px;
  }
  .section3 {
    height: 100%;
  }
  .form {
    margin-top: -80px;
    gap: 30px;
    padding: 30px 20px;
  }

  .main,
  .map iframe {
    width: 100%;
    max-width: 450px;
  }
  .all {
    width: 100px;
    font-size: 15px;
    text-align: center;
  }
  .prop {
    gap: 10px;
  }
  li {
    font-size: 14px;
  }
  .myimg {
    height: 300px;
    width: 350px;
  }
  .details1 .area1 {
    flex-direction: column;
  }

  .main {
    margin-top: 20px;
  }
  .map1 {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .villa {
    font-size: 40px;
  }

  .head-section {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .details {
    padding: 30px 20px;
  }

  .best {
    font-size: 24px;
  }

  .area {
    flex-direction: column;
  }

  .feature-box {
    flex: 1 1 100%;
  }
  .videoinfo2 {
    flex-direction: column;
  }
  .form {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: -60px;
  }

  .main,
  .map iframe {
    width: 90%;
    max-width: 400px;
  }

  .touch {
    padding: 60px 15px;
  }

  .contactus h4 {
    font-size: 24px;
  }

  .getin h5 {
    font-size: 20px;
  }
  .section6 {
    padding: 40px 15px;
  }

  .section6 .container {
    flex-direction: column;
    gap: 25px;
  }

  .property-left {
    flex: none;
    width: 100%;
  }

  .property-right {
    flex: none;
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
  }

  .info-card {
    flex: 0 0 200px;
  }

  .section6 .img-div img {
    height: 300px;
  }

  .property-info-section {
    padding: 25px;
  }

  .property-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .nav-div {
    font-size: 12px;
    gap: 20px;
  }

  .villaname {
    font-size: 30px;
  }

  .villa {
    font-size: 35px;
  }

  .section1 {
    padding: 40px 15px;
  }

  .details {
    padding: 25px 15px;
  }
  .videoinfo2 {
    flex-direction: column;
  }
  .form {
    margin-top: -40px;
    padding: 20px 10px;
    gap: 20px;
  }

  .main,
  .map iframe {
    width: 100%;
    max-width: 350px;
  }

  .main input,
  .main textarea {
    font-size: 13px;
    padding: 8px;
  }

  .submit {
    font-size: 14px;
    padding: 10px;
  }

  .contactus h4 {
    font-size: 20px;
  }

  .getin h5 {
    font-size: 18px;
  }
  .section6 {
    padding: 30px 10px;
  }

  .section6 .img-div img {
    height: 250px;
  }

  .property-info-section {
    padding: 20px;
  }

  .property-title {
    font-size: 22px;
  }

  .property-right {
    flex-direction: column;
  }

  .info-card {
    flex: none;
  }
}
