/* Global Styles */
:root {

  /* Font families */
  --font-century: 'Century Schoolbook', serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-inter: 'Inter', sans-serif; /* Add this line */

  /* Font weights */
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;

  --proware-yellow: #FFE600;
  --primary-text: #333333;
  --light-text: #888888;
  --dark-bg: #000000;
  --light-bg: #f5f5f5;
  --main-light: #f4f4f4;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

body {
  font-family: var(--font-poppins);
  font-weight: var(--regular);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

/* Section padding */
section {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1280px) {
  section {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}


/* Updated Agents Section */
.agents-section {
  background-color: var(--dark-bg);
  padding-top: 2rem;
  padding-bottom: 0.1rem;
}
.agents-section-one {
  background-color: var(--proware-yellow);
  padding-top: 2rem;
  padding-bottom: 0.1rem;
}

.agents-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.agents-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.agent-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.agent-title-one {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.agent-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
.agent-subtitle-one {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.btn-white-one {
  background-color: var(--light-bg);
  color: var(--black);
  border-radius: 50px;
  border: none;
  font-weight: 900;
  font-size: 1.0rem;
  padding-top: 1.2rem;
  padding-bottom: 0.1rem;
}

/* Desktop layout - row with space between */
@media (min-width: 768px) {
  .agents-content {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .agents-text {
    text-align: left;
    margin-bottom: 0;
  }

  .btn-white-one {
    margin-bottom: 0;
  }
}

/* Typography */
.heading-xl {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #000;
}

.heading-lg {
  font-size: 2.25rem;
  font-family: var(--font-inter);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.subtitle {
  color: #4D4D4D;
  margin-bottom: 2.0rem;
  font-family: var(--font-century);
  font-size: 2.25rem;
  font-weight: 100;
}

.subtitle span{
  color: var(--gray-500);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.subtitle-bold {
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 1rem;
}

.text-description {
  color: var(--gray-300);
  margin-bottom: 2rem;
  max-width: 36rem;
}

.text-description.dark {
  color: var(--gray-600);
}

.italic {
  font-style: italic;
}

@media (min-width: 768px) {
  .heading-xl {
    font-size: 2.25rem;
  }
  
  .heading-lg {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .heading-xl {
    font-size: 3rem;
  }
  
  .heading-lg {
    font-size: 2.25rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 3.5rem; /* Tight padding - reduced from previous values */
  border-radius: 10px; /* Slightly rounded corners instead of fully rounded */
  font-weight: 500;
  font-size: 1.0rem; /* ~13px */
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap; /* Prevents text wrapping */
  width: 10rem;
}

.btn:hover {
  opacity: 0.9;
}

.btn-yellow {
  background-color: var(--proware-yellow);
  color: var(--dark-bg);
}

.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-yellow-one {
  background-color: var(--light-bg);
  color: var(--dark-bg);
  outline: none;
  border-radius: 50px;
  border: none;
  font-weight: 900;
  font-size: 1.0rem;
  width: 20rem;
  padding: 0.8rem 0.8rem;
  margin-bottom: 4rem;
}

.btn-yellow-one-main {
  background-color: var(--proware-yellow);
  color: var(--dark-bg);
  outline: none;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 1.0rem;
  width: 12rem;
  padding: 0.8rem 0.8rem;
  margin-bottom: 4rem;
}

.btn-white-one {
  background-color: var(--light-bg);
  color: var(--black);
  outline: none;
  border-radius: 50px;
  border: none;
  font-weight: 900;
  font-size: 1.0rem;
  width: 20rem;
  padding: 1.2rem 2.5rem;
  margin-bottom: 4rem;
}

.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: var(--white);
  color: var(--dark-bg);
  border-radius: 10px;
  font-weight: 900;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  outline: none;
  border: none;
}

.btn-white-outline {
  background-color: var(--white);
  color: var(--dark-bg);
  border: 1px solid var(--dark-bg);
  border-radius: 9999px;
}

.btn-black-one{
  background-color: var(--dark-bg);
  color: var(--white);
  border-radius: 10px;
  font-weight: 900;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  outline: none;
  border: none;
}

.btn-black {
  background-color: var(--light-bg);
  color: var(--black);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
}

.full-width {
  width: 100%;
}

/* Navbar */
.navbar {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 1rem 3rem;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* Add this */
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 2.5rem;
}

.logo-icon {
  background: transparent;
}

.logo-icon img {
  height: 3.5rem;
  width: 14rem;
}

.logo-text {
  margin-left: 0.5rem;
  font-weight: 700;
  font-size: 3.125rem;
  font-family: var(--font-century);
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
}

.nav-link {
  margin: 0 1.0rem;
  color: #fff;
}


.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.mobile-menu.active {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
  
  .desktop-only {
    display: block;
  }
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}


/* Add these styles to your CSS */
.hero-section {
  background-color: var(--main-light);
  color: var(--white);
  padding: 1rem 1rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-left {
  width: 100%;
  margin-bottom: 3rem;
}

.heading-xl {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: #3A3A3A;
  font-family: var(--font-poppins);
  margin-bottom: 3.5rem;
   position: relative;
  z-index: 2; /* Ensure text stays above the vector */
}

/* Add to your styles.css */
.home-container {
  position: relative;
  display: inline-block;
   padding-bottom: 15px; /* Creates space for the vector */
}

/* For larger screens */
@media (min-width: 1024px) {
  .yellow-vector {
    bottom: -15px; /* Adjust for larger screens if needed */
    max-width: 150px;
  }
}

.text-gradient {
  background: linear-gradient(90deg, var(--proware-yellow), #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.0rem;
  line-height: 1.6;
  color: #3A3A3A;
  font-family: var(--font-poppins);
  font-weight: 300;
  margin-bottom: 3.5rem;
  max-width: 36rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-right {
  width: 100%;
}

.hero-image-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
}


/* Add to your styles.css */
.home-heading-container {
  position: relative;
  display: inline-block;
}

.home-text {
  position: relative;
}

.yellow-vector {
   position: absolute;
  bottom: -8px; /* Adjust this to position exactly under text */
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}



/* Design Section Styles */
.design-section {
  background-color: var(--main-light);
  padding: 0;
  margin: 0;
}

.design-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.design-image {
  width: 90%;
  height: auto;
  display: block;
}


.download-text{
  font-size: 0.8rem;
  font-family: var(--font-poppins);
  color: #3A3A3A;
  font-weight: 600;
  margin-bottom: 0;
}

.floating-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--white);
  color: var(--dark-bg);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: rotate(5deg);
}

.floating-badge span {
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.floating-badge p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.app-buttons {
  display: flex;
  gap: 0.1rem;
}

.app-button {
  display: flex;
  align-items: center;
  
}

.app-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.app-icon {
  height: 2.5rem;
  width: 8.5rem;
  margin-right: 0.75rem;
}

.app-big-text {
  font-weight: 600;
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 1rem 1rem 0 1rem;
  }
  
  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  
  .hero-left {
    width: 50%;
    margin-bottom: 0;
  }
  
  .hero-right {
    width: 50%;
  }
  
  .heading-xl {
    font-size: 3.5rem;
  }
  .design-container {
    padding: 0 2rem;
  }
}

/* Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(8deg);
  }
}

.floating-badge {
  animation: float 6s ease-in-out infinite;
}


.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-text);
}

.section-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--light-text);
  max-width: 36rem;
}


@media (min-width: 768px) {
  .agents-content {
    flex-direction: row;
  }
}

/* Savings Section */
.savings-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--main-light);
}

.savings-content {
  display: flex;
  gap: 20rem;
  flex-direction: column;
  align-items: center;
}

.savings-left {
  margin-bottom: 3rem;
}

.testimonials {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  display: flex;
  align-items: flex-start;
}

.testimonial-image {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  margin-right: 1rem;
  background: transparent;
}

.testimonial-author {
  font-weight: 900;
}

.testimonial-text {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.savings-image {
  border-radius: 0;
  height: auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .savings-content {
    flex-direction: row;
  }
  
  .savings-left {
    width: 50%;
    margin-bottom: 0;
  }
  
  .savings-right {
    width: 50%;
  }
}

/* Professionals Section */
.professionals-section {
  background-color: var(--main-light);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.professionals-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.professionals-left {
  margin-bottom: 3rem;
}
.professionals-right {
  margin-bottom: 3rem;
  background-color: #fff;
}
.professionals-image {
  border-radius: 0;
  background-color: #fff;
  }

@media (min-width: 1024px) {
  .professionals-content {
    flex-direction: row;
  }
  
  .professionals-left {
    width: 50%;
    margin-bottom: 0;
  }
  
  .professionals-right {
    width: 50%;
  }
}

/* Perfection Section */
.perfection-section {
  padding-top: 5rem;
  background-color: var(--main-light);
  padding-bottom: 5rem;
}

.perfection-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-container {
  position: relative;
  margin-bottom: 3rem;
}

.yellow-circle {
  background-color: var(--proware-yellow);
  border-radius: 9999px;
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  z-index: 0;
}

.perfection-image {
  background: transparent;
}

@media (min-width: 1024px) {
  .perfection-content {
    flex-direction: row;
  }
  
  .perfection-left {
    width: 50%;
    order: 1;
  }
  
  .perfection-right {
    width: 50%;
    padding-left: 4rem;
    order: 2;
  }
}

@media (max-width: 1023px) {
  .perfection-left {
    order: 2;
  }
  
  .perfection-right {
    order: 1;
  }
}


/* Project Section - Updated for proper row layout */
.project-section {
  background-color: #0D0B0C;
  color: var(--white);
  padding: 5rem 1rem;
}

.project-content {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin: 0 auto;
  gap: 2rem;
}

.project-left {
  order: 1; /* Default to first in mobile */
}

.project-right {
  order: 2; /* Default to second in mobile */
}

.project-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop layout */
@media (min-width: 1024px) {
  .project-content {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  
  .project-left {
    width: 50%;
    order: 1; /* Force left position */
  }
  
  .project-right {
    width: 50%;
    order: 2; /* Force right position */
  }
}



/* Map Section - Updated for row layout */
.map-section {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 5rem 1rem;
}

.map-header {
  margin-bottom: 3rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.map-container {
  position: relative;
  height: 24rem;
  border-radius: 0.5rem;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Desktop row layout */
@media (min-width: 1024px) {
  .map-section .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
  }

  .map-header {
    width: 50%;
    margin-bottom: 0;
    text-align: left;
  }

  .map-container {
    width: 50%;
    height: 30rem;
  }
}



/* Properties Section - Bootstrap Carousel with Horizontal Scroll */
.properties-section {
  background-color: var(--dark-bg);
  padding: 3rem 0;
}

.carousel {
  overflow: hidden;
}

.carousel-inner {
  overflow: visible;
}

.row.flex-nowrap {
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin-right: -15px;
  margin-left: -15px;
  padding-bottom: 15px; /* Space for scrollbar */
}

.row.flex-nowrap::-webkit-scrollbar {
  height: 8px;
}

.row.flex-nowrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.row.flex-nowrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.row.flex-nowrap::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.col-8.col-sm-6.col-md-4.col-lg-3 {
  scroll-snap-align: start;
  padding-right: 15px;
  padding-left: 15px;
}

.property-card {
  transition: transform 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-image {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Custom Indicators */
.carousel-indicators {
  margin-top: 1.5rem;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--proware-yellow);
  width: 12px;
  height: 12px;
}


/* Stats Section */
.stats-section {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--main-light);
}

.stats-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stats-subtitle {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.app-buttons.centered {
  justify-content: center;
  margin-bottom: 4rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  border-radius: 9999px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.icon {
  height: 1.5rem;
  width: 1.5rem;
}

.feature-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-text {
  color: var(--gray-600);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Footer */
.footer {
  color: var(--white);
}

.cta-banner {
  background-color: var(--proware-yellow);
  padding: 2rem 1rem;
  color: var(--dark-bg);
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-main {
  background-color: var(--dark-bg);
  padding: 10rem 1rem 2.5rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-column.wide {
  grid-column: span 2;
  margin-top: 2rem;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-link {
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 36rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #fff;
  margin-top: 3rem;
}

.footer-disclaimer {
  margin-top: 4.5rem;
  margin-bottom: 5rem;
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: #fff;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-column.wide {
    grid-column: span 2;
    margin-top: 0;
  }
}

/* Not Found Page */
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.not-found-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
  padding: 5rem 1rem;
}

.not-found-box {
  text-align: center;
  max-width: 32rem;
}

.not-found-code {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.not-found-message {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.not-found-button {
  background-color: var(--proware-yellow);
  color: var(--dark-bg);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
}
.not-found-button:hover {
  background-color: var(--dark-bg);
  color: var(--white);
}   