
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Lexend Deca", sans-serif;
  font-size: 1.8rem;
  background-color: #faffff;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  height: 7.2rem;
  background-color: #1a343b;
  position: fixed;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.header-logo {
  height: 7rem;
  width: auto;
}

.section {
  padding: 9rem 10rem 8rem 10rem;
}

.section:not(:first-child) {
  border-top: 1px solid #64e0ff;
}

.primary-heading {
  font-size: 6rem;
  font-weight: 700;
  color: #0088aa;
  text-shadow: 2px 2px 3px #0088aa86;
  line-height: 1.01;
  letter-spacing: -3px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.secondary-heading {
  color: #0088aa;
  text-shadow: 2px 2px 3px #0088aa86;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  font-size: 4.8rem;
}

.ternary-heading {
  font-size: 4rem;
  color: #0088aa;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  font-weight: 500;
}

.btn:link,
.btn:visited {
  font-size: 2rem;
  padding: 1.6rem 2.6rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.nav {
  display: flex;
  column-gap: 4rem;
  text-transform: uppercase;
}
.about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9rem 10rem 8rem 10rem;
  gap: 4rem;
  flex-wrap: wrap; /* Makes it responsive */
}

.about-text,
.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.nav-links:link,
.nav-links:visited {
  display: inline-block;
  font-size: 1.6rem;
  color: #f1ffff;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-weight: 400;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.nav-links:hover {
  color: #34c7c7;
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: center;
  gap: 10rem;
  padding: 10rem 6rem;
  height: 100vh;
  width: 125rem;
  justify-content: center;
  margin: 0 auto;
}

.hero-description {
  margin: 3rem 0 5rem 0;
  color: #555;
  line-height: 1.6;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-prices {
  margin: 6rem 0 1rem 0;
  text-transform: uppercase;
}

.hero-price {
  color: #e97a11;
  font-size: 3.2rem;
  font-weight: 500;
}

.hero-img {
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
  height: 47rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-properties:link,
.btn-properties:visited {
  background-color: #195969;
  color: #f1ffff;
  margin-right: 3rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-properties:hover,
.btn-properties:active {
  background-color: #1a343b;
  color: #d8ffff;
  transform: scale(1.05);
}

.btn-contact:link,
.btn-contact:visited {
  background-color: #c6ffff;
  color: #153138;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover,
.btn-contact:active {
  background-color: #195969;
  color: #f1ffff;
  transform: scale(1.05);
}

.about-description {
  width: 70rem;
  animation: fadeInUp 1.5s ease-out;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.about-logo {
  height: 3.2rem;
  width: 3.2rem;
  padding: 2rem;
  border-radius: 50%;
  color: #153138;
  background-color: #c6ffff;
  margin-bottom: 1rem;
}

.about-heading {
  font-size: 2.8rem;
  font-weight: 500;
  color: #3a3a3a;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.about-heading:hover {
  color: #0088aa;
}

.about-box-description {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #555;
}

.center-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.properties-set {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}

.properties-card {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 1rem;
  width: 100%;
  background-color: #f8feff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.properties-card:hover {
  transform: translateY(-10px);
}

.properties-img {
  border-bottom-left-radius: 8rem;
  border-top-left-radius: 8rem;
  width: 100%;
  height: 100%;
}

.properties-imgright {
  border-bottom-right-radius: 8rem;
  border-top-right-radius: 8rem;
  width: 100%;
  height: 100%;
}

.properties-right {
  border-radius: 0;
  border-bottom-right-radius: 8rem;
  border-top-right-radius: 8rem;
}

.properties-container {
  padding: 2rem 3.5rem 2rem 3.5rem;
}

.properties-loc {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #353535;
  gap: 4px;
  margin-bottom: 1rem;
}

.properties-card-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.properties-cards {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #c6ffff;
  font-size: 1.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
}

.properties-price {
  margin-bottom: 2rem;
}

.properties-card-logo {
  height: 2.4rem;
  width: 2.4rem;
}

.properties-description {
  font-size: 1.7rem;
  line-height: 1.6;
  color: #444;
  margin: 3rem 0 2rem 0;
}

.properties-list-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.properties-link:link,
.properties-link:visited {
  display: inline-block;
  text-decoration: none;
  background-color: #0088aa;
  font-size: 1.9rem;
  color: #f1ffff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.properties-link:hover,
.properties-link:active {
  background-color: #153138;
  color: #c6ffff;
  transform: scale(1.05);
}

.properties-link-logo {
  display: flex;
  align-items: center;
}

.properties-source-logo {
  height: 2.4rem;
  width: 2.4rem;
}

.properties-more:link,
.properties-more:visited {
  text-decoration: none;
  font-size: 1.8rem;
  color: #0088aa;
}

.properties-more:hover,
.properties-more:active {
  text-decoration: underline;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}

.testimonial-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.testimonial-img {
  height: 6rem;
  width: 6rem;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-description {
  margin: 2rem 0 1rem 0;
  color: #444;
  font-size: 1.6rem;
}

.testimonial-author {
  color: #555;
  font-size: 1.5rem;
  text-align: end;
}

.img-box {
  gap: 1rem;
}

.testimonial-photo-box {
  height: 26rem;
  width: 28rem;
  overflow: hidden;
}

.testimonial-photo {
  height: inherit;
  width: inherit;
  transition: all 0.3s;
}

.testimonial-photo:hover {
  transform: scale(1.1);
}

.contact-heading {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-container {
  display: grid;
  width: 60rem;
  grid-template-columns: 25rem 25rem;
  grid-template-rows: 8rem 8rem 27rem;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
}

.contact-label {
  display: block;
  margin-bottom: 1rem;
}

.contact-house {
  grid-column: 1/3;
}

.contact-input {
  padding: 1.4rem 2rem;
  width: 100%;
  border-radius: 8px;
  font-size: 1.6rem;
  font-family: inherit;
  border: 1px solid #0088aa;
  transition: border-color 0.3s ease;
}

.contact-input:focus {
  border: 2px solid #0088aa;
  outline: none;
}

.contact-input::placeholder {
  color: #01aaaa;
  font-size: 1.6rem;
  font-family: inherit;
  font-weight: 400;
}

.contact-link {
  padding-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
  background-color: #1a343b;
  padding: 5rem 8rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-heading {
  font-size: 2.4rem;
  color: #d2d2ff;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 11rem;
  margin-bottom: 5rem;
}

.copyright {
  font-family: inherit;
  font-size: 1.4rem;
  color: #c6ffff;
}

.social-container {
  margin-left: 8rem;
}

.social-links-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-social-logo {
  height: 2.4rem;
  width: 2.4rem;
}

.social {
  font-size: 1.8rem;
  display: inline-block;
}

.address {
  color: #d2d2ff;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

.social-link:link,
.social-link:visited {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #c6ffff;
  font-size: 1.6rem;
}

.social-link:hover,
.social-link:active {
  color: #34c7c7;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 70px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #000;
}

.container {
  display: flex;
  margin-top: 80px;
  height: calc(130vh - 100px);
}

.left-side {
  flex: 9;
  background: url('../Img/system/PAN_8189.JPG') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 100px;
  text-align: left;
}

.left-content h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.left-content p {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}

.start-button {
  background-color: #facc15;
  color: #000;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.3);
  text-transform: uppercase;
}

.start-button:hover {
  background-color: #333;
  color: #fff;
}
.container-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  flex-wrap: wrap;
}

.container-card.reverse {
  flex-direction: row-reverse;
}

.properties-container {
  flex: 1;
}

.ternary-heading {
  font-size: 24px;
  margin-bottom: 10px;
}

.properties-description {
  font-size: 16px;
  color: #555;
}
.slideshow-container {
  position: relative;
  width: 300px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.slideshow-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 10px;
}
.back-to-top {
position: fixed;
bottom: 40px;
right: 30px;
background: #007BFF;
color: white;
padding: 15px;
border-radius: 50%;
font-size: 24px;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
cursor: pointer;
z-index: 9999;
opacity: 0;
transform: translateY(100px);
transition: all 0.6s ease;
display: flex;
align-items: center;
justify-content: center;
}

.back-to-top.show {
opacity: 1;
transform: translateY(0);
}

.back-to-top:hover {
background: #0056b3;
transform: scale(1.15);
}

.slideshow-img.active {
  opacity: 1;
  z-index: 1;
}

.show-more-btn {
  border-color: #000000;
  color: #153138;
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 10px 100px;
  text-align: center;
  border-radius: 40px;
  margin-left: 40%;
  margin-top: 40px;
}


/* .show-more-btn {
  background-color: #195969;
  color: #f1ffff;
  transform: scale(1.05);
} */
