@import "tailwindcss";
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


:root {
  --primary: #cbaa3c;
  --primary-dull: #fff7de;
  --primary-btn-hover: #ffe48f;
  --black: #000000;
  --white: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
}

@font-face {
  font-family: 'ClassyVogue';
  src: url('../../Classyvogueregular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ClassyVogue';
  src: url('path-to-your-font/ClassyVogue.woff2') format('woff2'),
       url('path-to-your-font/ClassyVogue.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  gap: 5px;
  height: 40px;
  width: 128px;
  border: none;
  background: #fafff927;
  border-radius: 8px;
  cursor: pointer;
}

.lable {
  margin-top: 1px;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  letter-spacing: 1px;
  font-weight: 600;
}

.button:hover {
  background: #056bfa49;
}

.button:hover .svg-icon {
  animation: spin 1s linear infinite;
  font-weight: 600;
  width: 19px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-8deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(8deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* navbar styling */
.active-nav-link {
  background-color: red;
  font-weight: 600;
}

.active-bottom-link {
  background-color: #000000;
  color: red;
}

.rtl-support {
  font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', 'Urdu Typesetting', sans-serif;
}

@media (max-width: 767px) {
  .mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
  }

  .mobile-menu.open {
    max-height: 500px;
  }
}




.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.gradient-text {
  background: linear-gradient(90deg, #059669 0%, #10b981 100%);
  -webkit-text-fill-color: transparent;
}

.contact-card {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.form-input {
  transition: all 0.3s ease;
}

.form-input:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.submit-btn {
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #059669 0%, #10b981 100%);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.nav-link {
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}



/* about-styling */
.hero-gradient {
  background: linear-gradient(135deg, #ccb66d 0%, #cdaf4e 50%, #cbaa3c 100%);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
}

.team-card:hover img {
  transform: scale(1.05);
}

.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: linear-gradient(177deg, #ffe48f 0%, #ccb66d 100%);
  color: white;
}

.stat-card:hover i {
  color: white !important;
}


/* property details page styling */

.property-image {
  height: 400px;
  object-fit: cover;
  width: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
}

@media (max-width: 768px) {
  .property-image {
    height: 250px;
  }
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.sticky-sidebar {
  position: sticky;
  top: 20px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.property-card {
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  overflow: hidden;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-trends-table {
  width: 100%;
  overflow-x: auto;
}

.search-trends-table table {
  min-width: 800px;
}


.btn-primary {
  background-color: #22c55e;
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #16a34a;
}

.btn-secondary {
  background-color: #f1f5f9;
  color: #334155;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #e2e8f0;
}

.tab-btn.active {
  color: #166534;
  border-bottom-color: #22c55e;
}



/* image-slider styling */

.property-image-slider {
  width: 100%;
  height: 400px;
}

.property-image-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.5);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #10B981;
  /* green-500 */
  opacity: 1;
}

@media (max-width: 768px) {
  .property-image-slider {
    height: 250px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }
}

/* search suggestion styling */
#location-suggestions {
  max-height: 300px;
  overflow-y: auto;
}

.suggestion-item {
  transition: background-color 0.2s;
}

.suggestion-item:hover {
  background-color: #f0fdf4;
}

/* Highlight matching text in suggestions */
.suggestion-item span.highlight {
  font-weight: bold;
  color: #065f46;
}



/* hero section styling */
.transition-all {
  transition: all 0.3s ease;
}

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

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Custom dropdown styles */
.custom-dropdown {
  max-height: 200px;
  overflow-y: auto;
}

.custom-dropdown option {
  padding: 8px 12px;
}

.custom-dropdown option:hover {
  background-color: #f0fdf4;
}


/* filter styling */

.filter-section {
  background: linear-gradient(135deg, #000000a4 0%, #065f21 100%);
}

.price-range-slider {
  height: 6px;
  background: #dddddd;
  border-radius: 5px;
}

.price-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #065f46;
  border-radius: 50%;
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.no-results {
  background-color: #f8fafc;
  border: 1px dashed #cbd5e1;
}


.gradient-text {
  background: linear-gradient(90deg, #059669 0%, #10b981 100%);
  -webkit-text-fill-color: transparent;
}

.contact-card {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.form-input {
  transition: all 0.3s ease;
}

.form-input:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.submit-btn {
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #059669 0%, #10b981 100%);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}




/* submit :modal */
/* Animation for modal content */
#submittedModal>div {
  animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading spinner animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}



/* strategic-land and top-location  styling */

.society-card,
.location-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 247, 222, 0.8) 100%);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.society-card:hover,
.location-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.society-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.society-card:hover .fa-arrow-right {
  transform: translateX(3px);
}

.society-badge {
  background: var(--primary-dull);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.parallax-section {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-dull);
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  z-index: 0;
}

.content-wrapper {
  position: relative;
  z-index: 1;
}

.tag {
  background-color: var(--primary);
  color: var(--black);
}

.primary-btn {
  background-color: var(--primary);
  color: var(--black);
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background-color: var(--primary-btn-hover);
  transform: translateY(-2px);
}

.floating-shape {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: var(--primary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  bottom: 15%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--primary);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.card-image:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000000b3 0%, #0000003b 50%);
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}


