@font-face {
  font-family: "Cabinet";
  src: url(CabinetGrotesk-Variable.ttf);
}
@font-face {
  font-family: "Satoshi";
  src: url(Satoshi-Variable.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  color: #111;
  background-color: #fff;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  background: url("assests/main.png") no-repeat center/cover;
  height: 100vh;
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 🔴 Overlay to darken background */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* 🟡 Make sure all inner content stays above overlay */
.hero-section * {
  position: relative;
  z-index: 2;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.logo1 img {
  width: 160px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Cabinet";
  font-size: 1.1vw;
}
.nav-links li.nav-link.active a {
  color: white;
  background-color: #e2252d;
  font-weight: 700;
  padding: 12px;
  border-radius: 6px;
}
.visit-btn {
  background-color: #e2252d;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Cabinet";
  font-size: 1.1vw;
}
.visit-btn a {
  color: white;
  text-decoration: none;
}

/* Hero Content */
.hero-content {
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-top: 15vh;
}
.hero-content .address {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #eee;
  font-family: "Satoshi";
}
.hero-content h1 {
  font-family: "Cabinet";
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.black-btn,
.white-btn {
  padding: 14px 24px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.black-btn {
  background-color: #e2252d;
  color: white;
  font-family: "Cabinet";
  font-size: 1.02vw;
}
.white-btn {
  background-color: white;
  color: black;
  font-family: "Cabinet";
  font-size: 1.02vw;
}
.white-btn a{
  color: black;
}

/* Feature Cards */
.property-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 30px 20px;
  margin-top: 18vh;
}

.property-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 400px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: contain;
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #2f2f2f;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
}

.property-details {
  padding: 16px;
}

.property-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

.property-title {
  font-size: 18px;
  font-weight: bold;
  color: #111827;
  margin: 0 0 8px 0;
}

.property-price {
  font-size: 14px;
  color: #4b5563;
}
#property-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-header {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

#property-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* 3rd section */
.section-wrapper {
  max-width: 100vw;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-top: 10vh;
  padding: 100px;
  align-items: stretch;
}
.left-section {
  display: flex;
  flex-direction: column;
}
.left-section,
.right-section {
  flex: 1 1 48%;
}
a{
  color: #fff;
  text-decoration: none;
}
.section-title {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.3;
  font-family: "Cabinet";
}

.image-card-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.image-card-wrapper img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.info-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background-color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-card p {
  font-size: 14px;
  color: #555;
}

.slider-buttons {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}

.slider-buttons span {
  width: 28px;
  height: 28px;
  background-color: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}

.right-section img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.right-section p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.cta-button {
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #333;
}
/* 3 */
#foot {
  width: 100vw;
  height: 90vh;
  background-image: url(assests/foot.png);
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-top-left-radius: 50px;
  border-top-right-radius: 80px;
}
#foot h1 {
  font-family: "Cabinet";
  font-size: 5vw;
  color: white;
}
#foot p {
  font-family: "Satoshi";
  font-size: 1.3vw;
  color: white;
}
#foot button {
  background-color: #e2252d;
  color: #fff;
  margin-top: 30px;
  font-family: "Cabinet";
  font-size: 1.2vw;
  padding: 14px 24px;
  border: none;
  outline: none;
  border-radius: 30px;
  cursor: pointer;
}
/* Image Carousel */
.carousel-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  animation: scroll 40s linear infinite;
}

.carousel-track img {
  width: 360px;
  height: auto;
  margin-right: 20px;
  border-radius: 0px;
  flex-shrink: 0;
}
/* FOOTER */
footer {
  margin-top: -42px;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  color: #fff;
  background-color: #e2252d;
}
#footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 40px 30px;
  background-color: #e2252d;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

#footer-brand img {
  width: 200px;
  margin-bottom: 10px;
}

#footer-brand p {
  margin: 6px 0;
}

#footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

#footer-social img {
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid #fff;
  border-radius: 10px;
}

#footer-nav,
#footer-resources,
#footer-location {
  min-width: 180px;
}

#footer-nav h4,
#footer-resources h4,
#footer-location h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
}

#footer-nav ul,
#footer-resources ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer-nav li,
#footer-resources li {
  margin-bottom: 10px;
  color: #fff;
}

#footer-nav a,
#footer-resources a,
#footer-location a {
  text-decoration: none;
  color: #fff;
}
#footer-location {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#footer-location img {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
  margin-top: 5px;
}

#footer-bottom {
  margin-top: 40px;
  padding: 20px 40px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #fff;
  background-color: #e2252d;
}

#footer-links a {
  text-decoration: none;
  color: #fff;
  margin: 0 5px;
}
footer h4 {
  font-family: "Cabinet";
}
#footer-location .box {
  display: flex;
  align-items: center;
}
/* Animation for infinite scrolling */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0px 20px;
  padding-top: 40px;
  padding-bottom: 60px;
  box-sizing: border-box;
}

.stat {
  display: flex;
  flex-direction: column;
  justify-content: start;
  flex: 1 1 200px;
  max-width: 250px;
  text-align: left;
  margin-bottom: 20px;
  align-items: start;
}

.stat h2 {
  font-family: "Cabinet";
  font-weight: 400;
  font-size: 56px;
  margin: 0 0 10px;
}

.stat p {
  font-family: "Cabinet";
  font-size: 18px;
  color: #333;
  line-height: 1.4;
}
/* 4 */
#custom-property-section {
  text-align: center;
  padding: 0px 3.5vw;
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: white;
  overflow-x: hidden;
}

#custom-property-section .custom-tagline {
  text-transform: uppercase;
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

#custom-property-section .custom-main-heading {
  font-family: "Cabinet", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
}

.custom-video-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  flex-wrap: wrap;
}

.custom-video-card {
  position: relative;
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.custom-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.custom-video-card h2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  font-family: "Cabinet", sans-serif;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* ------------------------------
   Responsive: Tablets (<= 768px)
-------------------------------- */
@media (max-width: 768px) {
  #custom-property-section .custom-main-heading {
    font-size: 32px;
  }
  .custom-video-card h2 {
    font-size: 20px;
  }
}

/* ------------------------------
   Responsive: Mobiles (<= 480px)
-------------------------------- */
@media (max-width: 480px) {
  #custom-property-section {
    padding: 40px 5vw;
  }
  #custom-property-section .custom-main-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .custom-video-grid {
    flex-direction: column;
    gap: 15px;
  }
  .custom-video-card {
    min-width: 100%;
  }
  .custom-video-card h2 {
    font-size: 18px;
    bottom: 15px;
    left: 15px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-track img {
    width: 220px;
    margin-right: 15px;
  }
  .stat h2 {
    font-size: 28px;
  }
  .stat p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .carousel-track img {
    width: 180px;
    margin-right: 10px;
  }
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  .stat {
    max-width: 300px;
  }
  .stat h2 {
    font-size: 24px;
  }
  .stat p {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .section-heading {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .section-heading {
    font-size: 22px;
  }

  .slider-buttons span {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 28px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .property-card {
    width: 100%;
    max-width: 360px;
  }

  .property-section {
    padding: 20px 10px;
  }
  .section-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .left-section,
  .right-section {
    flex: 1 1 100%;
  }

  .section-heading {
    font-size: 26px;
  }

  .info-card h3 {
    font-size: 16px;
  }

  .info-card p {
    font-size: 13px;
  }

  .right-section p {
    font-size: 14px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
  .image-card-wrapper {
    height: auto;
  }
}
