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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Global Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0px 20px;
}

/* ==========================
   HEADER / HERO SECTION
========================== */

.Header {
  background-image: url("images/Original home.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* NAVBAR */
.Header nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1100px;
  padding: 14px 20px;
  background-color: rgba(2, 117, 118, 0.95);
  border-radius: 12px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.Header nav h1 {
  color: white;
  font-size: 22px;
  font-weight: 600;
}

.Header nav ul {
  display: flex;
  gap: 22px;
  align-items: center;
}

.Header nav ul li a {
  color: white;
  font-size: 15px;
  transition: 0.3s;
}

.Header nav ul li a:hover {
  opacity: 0.7;
}

.Header nav i {
  display: none;
  font-size: 24px;
  color: white;
}

/* HERO TEXT */
.Hero-text {
  z-index: 5;
  text-align: center;
  padding: 0px 20px;
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.Hero-text h1 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.Hero-text .search-box {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.search-box input {
  padding: 15px 18px;
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  outline: none;
  border: none;
  font-size: 15px;
}

.search-box button {
  padding: 15px 22px;
  border-radius: 30px;
  background-color: #027576;
  color: white;
  font-size: 15px;
  transition: 0.3s;
}

.search-box button:hover {
  background-color: #015f60;
}

/* ==========================
   SECTION 2
========================== */

.Section-2 {
  padding: 80px 0px;
}

.section-description {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.section-description h2 {
  font-size: 28px;
  color: #112f56;
}

.section-description button {
  background-color: #027576;
  padding: 14px 22px;
  font-size: 14px;
  color: white;
  border-radius: 30px;
  transition: 0.3s;
}

.section-description button:hover {
  background-color: #015f60;
}

/* PROPERTY GRID */
.image-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.image-card .card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.image-card .card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.image-description {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-description h3 {
  color: #112f56;
  font-size: 18px;
}

.image-description p {
  font-size: 14px;
  color: gray;
}

.image-description > :first-child {
  color: #027576;
  font-size: 20px;
  font-weight: 700;
}

.bed-bath {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.bed-bath div {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: #112f56;
}

.image-description button {
  margin-top: 15px;
  padding: 12px 18px;
  background-color: #027576;
  color: white;
  border-radius: 25px;
  font-size: 14px;
  width: fit-content;
  transition: 0.3s;
}

.image-description button:hover {
  background-color: #015f60;
}

/* SLIDE BUTTONS */
.slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}

.slide button {
  padding: 12px 28px;
  border-radius: 30px;
  background-color: #112f56;
  color: white;
  font-size: 14px;
}

.slide .dots {
  display: flex;
  gap: 6px;
}

.slide .dots i {
  font-size: 9px;
  color: #112f56;
}

/* ==========================
   SECTION 3
========================== */

.Section-3 {
  background-color: #f2f4f6;
  padding: 80px 0px;
}

.Section-3 .heading {
  text-align: center;
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.Section-3 .heading h3 {
  font-size: 30px;
  color: #112f56;
}

.Section-3 .heading p {
  color: gray;
  font-size: 15px;
  margin-bottom: 30px;
}

.section3-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.section3-card > div {
  background: white;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items : center;
  flex-direction: column;
  gap: 15px;
}

.section3-card > div i {
  font-size: 55px;
  color: #112f56;
}

.section3-card span {
  font-size: 18px;
  font-weight: 600;
  color: #112f56;
}

.section3-card p {
  font-size: 14px;
  color: gray;
}

.section3-card a {
  font-weight: 500;
  color: #112f56;
  border-bottom: 3px solid #112f56;
  width: fit-content;
  margin: auto;
}

/* ==========================
   SECTION 4
========================== */

.Section-4 {
  padding: 80px 0px;
}

.customer-says {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.customer-says h2 {
  font-size: 28px;
  color: #112f56;
}

.customer-says button {
  padding: 12px 25px;
  border-radius: 30px;
  background-color: #027576;
  color: white;
}

.customers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.customers > div {
  background: white;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.customers img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}

.customers h3 {
  color: #112f56;
}

.customers span {
  font-size: 14px;
  color: gray;
}

.customers p {
  font-size: 13px;
  color: #027576;
  font-weight: 500;
}

.customers .stars {
  display: flex;
  gap: 5px;
  color: #ffc107;
  font-size: 13px;
}

/* ==========================
   SECTION 5
========================== */

.Section-5 {
  background-color: #f8f9fa;
  padding: 80px 0px;
}

.Section-5 .heading {
  text-align: center;
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.Section-5 .heading h3 {
  font-size: 30px;
  color: #112f56;
}

.Section-5 .heading p {
  font-size: 15px;
  color: gray;
}

.Section-5 .main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
  align-items: center;
}

.Section-5 .left-box {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.mini-description {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.mini-description .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #f2f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-description .icon i {
  font-size: 18px;
  color: #112f56;
}

.mini-description .text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-description .text h4 {
  font-size: 18px;
  color: #112f56;
}

.mini-description .text span {
  font-size: 14px;
  color: gray;
}

.Section-5 .image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Section-5 .image-box img {
  width: 100%;
  border-radius: 15px;
  max-width: 450px;
}

.Section-5 .numbers {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.Section-5 .numbers strong {
  font-size: 34px;
  color: #112f56;
}

.Section-5 .numbers p {
  font-size: 13px;
  color: gray;
}

/* ==========================
   SMALL SECTION
========================== */

.small-section {
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-section h3 {
  font-size: 28px;
  color: #112f56;
}

.small-section button {
  padding: 15px 25px;
  border-radius: 30px;
  background-color: #112f56;
  color: white;
  font-size: 14px;
  width: fit-content;
  margin: auto;
}

/* ==========================
   SECTION 6
========================== */

.Section-6 {
  padding: 80px 0px;
  background-color: #f8f9fa;
}

.Section-6 .heading {
  text-align: center;
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.Section-6 .heading h3 {
  font-size: 30px;
  color: #112f56;
}

.Section-6 .heading p {
  color: gray;
  font-size: 15px;
}

.Section-6 .card {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.Section-6 .agents {
  background: white;
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
}

.Section-6 .agents img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 15px;
}

.Section-6 .agents h3 {
  color: #112f56;
  font-size: 18px;
}

.Section-6 .agents p {
  font-size: 14px;
  color: gray;
  margin-top: 10px;
}

.Section-6 .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.Section-6 .social-links div {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #112f56;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* ==========================
   FOOTER
========================== */

footer {
  background-color: #f8f9fa;
  padding: 70px 0px 30px;
}

footer .nav-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

footer .box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer h4 {
  color: #112f56;
  font-size: 16px;
}

footer a,
footer p {
  font-size: 14px;
  color: gray;
}

footer .socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

footer .socials div {
  width: 40px;
  height: 40px;
  background: #dcdcdc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .socials i {
  color: #444;
}

footer .last-part {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================
   CONTACT + LEAD SECTION
========================== */

.contact-section {
  padding: 80px 0;
  background: #f2f4f6;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT SIDE (FREEBIE) */
.lead-side {
  background: #027576;
  color: white;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.lead-side h3 {
  font-size: 28px;
}

.lead-side p {
  font-size: 14px;
  color: #e0f7f7;
}

.lead-side ul {
  font-size: 14px;
  line-height: 1.8;
}

.lead-form {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-form input {
  padding: 14px;
  border-radius: 30px;
  border: none;
  outline: none;
}

.lead-form button {
  padding: 14px;
  border-radius: 30px;
  background-color: #112f56;
  color: white;
  transition: 0.3s;
}

.lead-form button:hover {
  background-color: #0d2442;
}

/* RIGHT SIDE (CONTACT FORM) */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form h3 {
  color: #112f56;
}

.form-row {
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: "Poppins", sans-serif;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #027576;
}

.contact-form button {
  padding: 14px;
  border-radius: 30px;
  background-color: #027576;
  color: white;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #015f60;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}



/* ==========================
   RESPONSIVE BREAKPOINTS
========================== */

@media (max-width: 992px) {
  .image-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .section3-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .customers {
    grid-template-columns: repeat(2, 1fr);
  }

  .Section-6 .card {
    grid-template-columns: repeat(2, 1fr);
  }

  footer .nav-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .Hero-text h1 {
    font-size: 38px;
  }

  .Section-5 .numbers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .Header nav ul {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(2, 117, 118, 0.98);
    padding: 25px;
    /* border-radius: 12px; */
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .Header nav ul.active {
    opacity: 1;
    pointer-events: auto;
  }

  .Header nav i {
    display: block;
  }

  .Hero-text h1 {
    font-size: 30px;
  }

  .Hero-text .search-box {
    flex-direction: column;
    align-items: center;
  }

  .search-box input {
    width: 100%;
  }

  .search-box button {
    width: 100%;
    max-width: 500px;
  }

  .section-description {
    flex-direction: column;
    align-items: flex-start;
  }

  .Section-5 .main {
    grid-template-columns: 1fr;
  }

  .slide {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .image-card {
    grid-template-columns: 1fr;
  }

  .section3-card {
    grid-template-columns: 1fr;
  }

  .customers {
    grid-template-columns: 1fr;
  }

  .Section-6 .card {
    grid-template-columns: 1fr;
  }

  footer .nav-links {
    grid-template-columns: 1fr;
  }

  .Hero-text h1 {
    font-size: 26px;
  }

  .small-section h3 {
    font-size: 22px;
  }
}