/* Reset */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cormorant Garamond", serif;
}

body{
  overflow-x: hidden;
}

/* Header */
.header {
  width: 100%;
  padding: 15px 60px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white; 
  color: black;
}

.header-logo img {
  height: 70px; /* Bigger logo */
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.header-nav a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.header-nav a:hover {
  color: #ccc;
}

.header-btns{
 display: flex;
 justify-content: space-between;
 gap: 30px;
}

.call-btn{
  color: black;
  text-transform: uppercase;
  font-size: 16px;
  background-color: white;
  border: none;
}

.call{
  display: flex;
  justify-content:center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}

.call > svg{
  width: 20px;
  height: 20px;
}

.git-btn{
  color: white;
  background-color: black;
  padding: 8px 16px;
  text-transform: uppercase;
  font-size: 16px;
}

.git-btn:hover{
  background-color: #3d3d3d;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 400px 60px;
  color: white;
}

/* Subtitle with line */
.hero-subtitle-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #fff;
  margin-right: 10px;
}

.hero-subtitle {
  font-size: 16px;
  display: inline-block;
}

.mobile-video {
    display: none;
  }

  /* Show desktop video on larger screens */
  @media (min-width: 768px) {
    .desktop-video {
      display: block;
    }
    .mobile-video {
      display: none;
    }
  }

  /* Show mobile video on small screens */
  @media (max-width: 767px) {
    .desktop-video {
      display: none;
    }
    .mobile-video {
      display: block;
    }
  }

/* Title */
.hero-title {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

/* Description */
.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.9s;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #000000; /* Updated color */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.2s;
}

.hero-btn:hover {
  background: #515151;
}

/* Animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fp-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.fp-title {
   font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000; 
}

.fp-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
}

/* GRID LAYOUT */
.fp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 20px;
}

.fp-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.fp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fp-card-large {
  grid-row: span 2; /* Left image spans 2 rows */
}

/* Overlay */
.fp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.fp-card:hover .fp-overlay {
  opacity: 1;
}

.fp-overlay h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.fp-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
}

.fp-btn {
  display: inline-block;
  background:#000000;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s;
}

.fp-btn:hover {
  background: #515151;
}

/* Responsive */
@media (max-width: 900px) {
  .fp-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .fp-card-large {
    grid-row: span 1;
    height: 300px;
  }
  .fp-card {
    height: 200px;
  }
}


#features-section {
  padding: 60px 10%;
  background: #fff;
}

.features-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.features-text {
  flex: 1 1 50%;
}

.features-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000; /* purple */
  margin-bottom: 20px;
}

.feature-item {
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Right Side: Image + Stats */
.features-image-container {
  flex: 1 1 45%;
  text-align: center;
}

.features-image img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  margin-bottom: 30px;
}

/* Stats Section */
.features-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.stat-item p {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* Animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1.5s ease forwards;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1.5s ease forwards;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.5s ease forwards;
}

@keyframes fadeInLeft {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width: 900px) {
  .features-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .features-image img {
    width: 280px;
    height: 280px;
  }
  .features-stats {
    gap: 30px;
  }
}

.custom-logo-slider-wrapper{
padding: 50px 10%;
}

.custom-logo-slider-title {
    text-align: left;
    color: #000000;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .custom-slider-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    
  }

  .custom-slider-track {
    display: flex;
    animation: custom-scroll 20s linear infinite; /* default desktop speed */
  }

  .custom-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    margin: 0 30px;
  }

  /* Equal logo size */
  .custom-slide img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  @keyframes custom-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Mobile: faster animation */
  @media (max-width: 768px) {
    .custom-slider-track {
      animation: custom-scroll 10s linear infinite; /* twice as fast */
    }
  }

  #recent-properties {
  background: #fff;
  padding: 50px 10%;
}

.properties-container {
  display: flex;
  max-width: 1400px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.left-content {
  flex: 1;
  min-width: 300px;
  animation: fadeInLeft 1s ease-in-out;
}

.left-content .subheading {
  font-size: 28px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.left-content .description {
  font-size: 16px;
  line-height: 1.7;
  color: #2F234FCC;
}

.right-content {
  flex: 2;
  min-width: 300px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.property-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  animation: fadeInUp 1.2s ease-in-out;
}

.property-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-card:hover img {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .properties-container {
    flex-direction: column;
  }

  .property-grid {
    grid-template-columns: 1fr;
  }
}

/* Existing styles remain unchanged above this line */

.view-more-wrapper {
  margin-top: 30px;
  animation: fadeInUp 1.4s ease-in-out;
}

.view-more-btn {
  padding: 12px 32px;
  border: 2px solid #000000;
  background-color: transparent;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background-color: #515151;
  color: #fff;
}


#founder-section {
  background-color: #fdfcfe;
  padding: 50px 10%;
  text-align: center;
}

.founder-heading {
  color: #000;
  font-size: 48px;
  margin-bottom: 50px;
  animation: fadeInDown 1s ease-in-out;
}

.founder-container {
  max-width: 1200px;
  margin: auto;
}

.founder-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 60px;
}

.founder-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  padding: 60px;
  max-width: 340px;
  text-align: center;
  transition: transform 0.3s ease;
  animation: fadeInLeft 1s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
}

.founder-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.founder-name {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.founder-role {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.founder-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.social-icon img {
  width: 22px;
  height: 22px;
  color: #000;
  transition: color 0.3s ease;
}

.social-icon:hover img {
  color: #000000;
}

.founder-text {
  max-width: 600px;
  animation: fadeInRight 1.2s ease;
  text-align: center;
}

.founder-text h3 {
  font-size: 40px;
  color: #333;
  margin-bottom: 10px;
}

.founder-title {
  color: #666;
  font-size: 18px;
  margin-bottom: 20px;
}

.founder-description {
  font-size: 24px;
  color: #555;
  line-height: 1.7;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .founder-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-text {
    text-align: center;
  }
}

#testimonial-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.testimonial-container {
  max-width: 1300px;
  margin: auto;
}

.testimonial-heading {
  font-size: 36px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-subheading {
  font-size: 16px;
  color: #4b4b4b;
  margin-bottom: 100px;
}

.testimonial-slider {
  position: relative;
}

.testimonial-slide {
  display: none;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeIn 0.8s ease-in-out;
}

.testimonial-slide.active {
  display: flex;
}

.testimonial-card {
  width: 32%;
  background-color: #fff;
  padding-top: 70px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

/* Top floating card */
.testimonial-quote-box {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  width: 90%;
  z-index: 2;
}

.quote-svg {
  width: 32px;
  margin-bottom: 16px;
  filter: opacity(0.2);
}

.testimonial-quote-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.testimonial-quote-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Client Info */
.testimonial-client {
  padding: 90px 20px 30px;
}

.testimonial-client img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
}

.testimonial-client h4 {
  font-size: 16px;
  font-weight: 700;
  color: #4b3f60;
  margin-bottom: 6px;
}

.testimonial-client span {
  font-size: 14px;
  color: #aaa;
}

/* Dots */
.testimonial-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-dots .dot {
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  border: 2px solid #000000;
  background-color: transparent;
  width: 10px;
  height: 10px;
}

.testimonial-dots .dot.active {
  background-color: #000000;
  width: 16px;
  height: 16px;
  border: none;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-card {
    width: 48%;
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    width: 100%;
  }
}


.connect-section {
  background-color: #f7f7f7;
  padding: 40px 20px;
  color:#000;
}

.connect-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.connect-left {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.bg-shape {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  max-width: 445px;
  z-index: 0;
}

.connect-heading {
  position: relative;
  font-size: 96px;
  font-weight: 800;
  z-index: 1;
  line-height: 1.2;
  color: #000;
  padding-left: 30px;
}

.connect-right {
  flex: 1;
  min-width: 300px;
  padding-left: 40px;
  z-index: 2;
}

.connect-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.connect-description {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
}

.social-link img {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

.social-link span {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .connect-container {
    flex-direction: column;
    text-align: center;
  }

  .connect-left,
  .connect-right {
    padding-left: 0;
    text-align: center;
  }

  .connect-heading {
    padding-left: 0;
    font-size: 44px;
  }

  .social-links {
    justify-content: center;
  }
}


.featured-projects {
  max-width: 1300px;
  margin: auto;
  padding: 50px 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.heading-left {
  position: relative;
}

.sub-heading {
  font-size: 13px;
  color: #888;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.sub-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #ccc;
  margin-top: 6px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 10px 0 0;
  color: #000000;
}

.arrows {
  display: flex;
  gap: 20px;
  display: none;
}

.arrow {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
}

.arrow:hover {
  color: #000;
}

@media screen and (max-width:500px){
  .arrows{
    display: block;
  }
  .section-header h2{
    font-size: 24px;
  }
}

.carousel-wrapper {
  position: relative;
}

.carousel {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 40px;
}

.card {
  min-width: 280px;
  max-width: 280px;
  flex: 0 0 auto;
  text-align: center;
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.card h3 {
  font-size: 16px;
  margin: 12px 0 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card .subtitle {
  font-size: 12px;
  color: #444;
  margin: 5px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card .desc {
  font-size: 12px;
  color: #777;
}


.footer {
  background: #fff;
  padding: 40px 60px;
  color: #333;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-left {
  max-width: 250px;
}

.footer-logo img {
  width: 80px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #000;
}

.footer hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
}

.footer-bottom-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #666;
  font-size: 13px;
}

.footer-bottom-links a:hover {
  color: #000;
}

.wp > img {
  background-color: black;
  border-radius: 50px;
  padding: 8px;
  width: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}

@media screen and (max-width:500px){
  .footer-top{
    flex-direction: column;
    gap: 20px;
  }
  .footer-links{
    flex-direction: column;
    gap: 10px;
  }
}


/* === Header Base === */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #fff;
  position: relative;
}

.header-logo img {
  max-height: 50px;
}

.header-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.header-nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.call {
  display: flex;
  align-items: center;
  gap: 6px;
}

.call-btn,
.git-btn {
  /* padding: 8px 14px; */
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.call-btn {
  background: none;
  color: #000; /* Desktop black */
}

.git-btn {
  background: #000;
  color: #fff;
}

.hamburger {
  display: none; /* hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger img {
  width: 28px;
  height: 28px;
}

.mobile-btns{
  display: none;
}

/* === Mobile Styles === */
@media (max-width: 768px) {
  /* Hide nav on mobile by default */
  .header-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }

  .header-nav.active {
    display: block;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .header-nav ul li a {
    color:#000; /* menu links white */
  }

  .mobile-btns {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-btns .call-btn {
    background: none;
    color: #000;
    font-size: 16px;
  }

  .mobile-btns .git-btn {
    background: #000;
    color: #fff;
    font-weight: bold;
    margin: 0px 30px;
  }

  /* Desktop-only items hidden on mobile */
  .desktop-only {
    display: none;
  }

  /* Hamburger only on mobile */
  .hamburger {
    display: block;
  }
  .mobile-menu-svg{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mobile-menu-svg > svg{
    width: 18px;
    height: 18px;
  }
  .hero{
    height: 74vh;
  }
  .founder-heading{
    font-size: 38px;
  }
  .founder-description{
    font-size: 20px;
  }
}

a{
  text-decoration: none;
}
