:root {
  --primary: #0d0d0d;
  --secondary: #1a1a1a;
  --accent: #f5c518;
  --accent-dark: #e6b800;
  --text-light: #ccc;
  --text-muted: #aaa;
}



body,
html {
  height: 100%;
  margin: 0;
  font-family: "Manrope", Sans-serif;



  background-color: var(--primary);
  color: white;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  transition: all 0.3s ease;
  padding: 15px 0;
  /* background-color: rgba(0,0,0,0.9); */
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
}

.navbar.scrolled {
  background-color: rgba(13, 13, 13, 0.95) !important;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent) !important;
}

.nav-link {
  color: white !important;
  position: relative;
  font-weight: 500;
  margin: 0 10px;
  padding: 8px 0 !important;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 1px;
  font-family: "Manrope", Sans-serif;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--accent);
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  color: var(--accent) !important;
  background: var(--accent);
}



/* Hero Carousel */
.carousel-item {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  animation: zoomOutFast 2.5s ease-in-out forwards;
}

@keyframes zoomOutFast {
  0% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}



.carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  z-index: 9;
}

/* Text Animation */
.animate-text {
  opacity: 0;
  transform: scale(0.8);
}

.zoomInNow {
  animation: zoomInText 0.8s ease-out forwards;
}


.carousel-item.active .animate-text {
  animation-delay: 0.4s;
}

@keyframes zoomInText {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  margin-top: -2.5rem;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.carousel-caption .cta-btn {
  margin-top: 20px;
  padding: 12px 30px;
  border: 2px solid var(--accent);
  background: transparent;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.carousel-caption .cta-btn:hover {
  background: var(--accent);
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 197, 24, 0.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  z-index: 3;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--accent);
}

/* Info box (optional, unchanged) */
.info-box {
  text-align: center;
  padding: 30px 20px;
}

.info-box i {
  font-size: 40px;
  color: gold;
  margin-bottom: 15px;
}

.info-box h5 {
  font-weight: bold;
}

.divider {
  border-left: 1px solid #444;
  height: 100px;
  margin: auto;
}

/* Page Header */
.page-header {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.breadcrumb {
  justify-content: center;
  background: transparent;
}

.breadcrumb-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-item.active {
  color: var(--accent);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-light);
}

/* Sections */
section {
  padding: 40px 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 70px;
  height: 4px;
  background-color: var(--accent);
  margin: 10px auto 30px auto;
  position: relative;
}

.divider::after {
  content: '★';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: white;
  background: var(--primary);
  padding: 0 5px;
}

/* Testimonials */
.testimonial-card {
  background-color: var(--secondary);
  border-radius: 10px;
  padding: 30px 20px;
  position: relative;
  min-height: 280px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card img.profile {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid var(--primary);
  object-fit: cover;
}

.testimonial-name {
  text-align: center;
  margin-top: 50px;
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-date {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.testimonial-stars {
  color: var(--accent);
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.verified {
  color: #00acee;
  font-size: 1rem;
}

.testimonial-text {
  text-align: center;
  margin-top: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.read-more {
  color: var(--accent);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: white;
}

/* Buttons */
.btn-yellow {
  background-color: var(--accent);
  color: black;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 197, 24, 0.3);
}

.btn-outline-yellow {
  color: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-yellow:hover {
  background-color: var(--accent);
  color: black;
}

/* Stats */
.stats-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
}

.stats-section p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.stats-section .stat-desc {
  font-size: 1rem;
  color: var(--text-light);
}

/* Property Cards */
.property-card {
  background-color: var(--secondary);
  border: none;
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  margin-bottom: 30px;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(245, 197, 24, 0.1);
}

.property-img {
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
  width: 100%;
}

.property-card:hover .property-img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent);
  color: black;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.property-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.property-type {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.property-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.property-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Property Detail */
.property-detail-header {
  margin-bottom: 50px;
}

.property-detail-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.property-detail-location {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.property-detail-location i {
  margin-right: 10px;
}

.property-detail-price {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.property-detail-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.property-meta-item {
  margin-right: 30px;
  margin-bottom: 15px;
}

.property-meta-item i {
  color: var(--accent);
  margin-right: 8px;
}

.property-detail-gallery {
  margin-bottom: 50px;
}

.gallery-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-thumbs {
  margin-top: 15px;
}

.gallery-thumb {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border: 2px solid var(--accent);
}

.property-detail-content {
  margin-bottom: 50px;
}

.property-detail-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.property-detail-section h3::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--accent);
  bottom: 0;
  left: 0;
}

.property-features-list {
  list-style: none;
  padding: 0;
  columns: 2;
}

.property-features-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  break-inside: avoid;
}

.property-features-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.property-sidebar {
  background-color: var(--secondary);
  padding: 30px;
  border-radius: 10px;
  position: sticky;
  top: 20px;
}

.property-agent {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.property-agent-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
  border: 3px solid var(--accent);
}

.property-agent-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.property-agent-role {
  color: var(--accent);
  font-size: 0.9rem;
}

.property-contact-form input,
.property-contact-form textarea {
  background-color: var(--primary);
  border: 1px solid #333;
  color: white;
  margin-bottom: 15px;
}

.property-contact-form input:focus,
.property-contact-form textarea:focus {
  background-color: var(--primary);
  color: white;
  border-color: var(--accent);
  box-shadow: none;
}

.partner-box {
  position: relative;
  width: 200px;
  height: 190px;
  margin: auto;
  overflow: hidden;
  border-radius: 8px;
}

.partner-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Overlay */
.partner-overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 0;
  background-color: rgba(138, 137, 137, 0.5);
  /* orange overlay */
  transition: 0.4s ease;
}

.partner-box:hover .partner-overlay {
  bottom: 0;
  height: 100%;
}

/* Blog */
.blog-card {
  background-color: var(--secondary);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-card-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-date {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.blog-card-date i {
  margin-right: 8px;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-card-excerpt {
  color: var(--text-light);
  margin-bottom: 15px;
}

.blog-card-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.blog-card-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-card-link:hover {
  color: white;
}

.blog-card-link:hover i {
  transform: translateX(5px);
}

/* Pagination */
.pagination .page-item .page-link {
  background-color: var(--secondary);
  border: none;
  color: white;
  margin: 0 5px;
  border-radius: 5px;
}

.pagination .page-item.active .page-link {
  background-color: var(--accent);
  color: black;
}

.pagination .page-item .page-link:hover {
  background-color: var(--accent);
  color: black;
}

/* About Team */
.team-card {
  background-color: var(--secondary);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  margin: 0 auto 20px;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-position {
  color: var(--accent);
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
}

.team-social a {
  width: 35px;
  height: 35px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--accent);
  color: black;
  transform: translateY(-3px);
}

/* Contact Info */
.contact-info-card {
  background-color: var(--secondary);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(245, 197, 24, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--accent);
}

.contact-info-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.contact-icon {
  font-size: 24px;
  color: var(--accent);
  margin-top: 4px;
  /* adjust to align vertically */
}

/* Center the entire follow section */
.follow-us {
  text-align: center;
}

/* Make sure icons inside buttons are centered */
.follow-us .btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.contact-info-text {
  color: var(--text-light);

}

/* Contact Form */
.contact-form input,
.contact-form textarea {
  background-color: var(--secondary);
  border: 1px solid #f8f2f2;
  color: white;
  border-radius: 0;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: var(--secondary);
  color: white;
  border-color: var(--accent);
  box-shadow: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: white;
  opacity: 1;
  /* Make sure it's fully visible */
}

/* Map */
.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
  color: white;
  font-size: 30px;
}

/* Footer */
footer {
  background-color: var(--secondary);
  padding: 40px 0 20px;
  border-top: 3px solid var(--accent);
}

.social-icon {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--accent);
  transform: translateY(-5px);
}

.footer-links {
  margin: 30px 0;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  margin: 0 15px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-dark);
  transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .property-detail-title {
    font-size: 2.2rem;
  }

  .gallery-main img {
    height: 400px;
  }
}

@media (max-width: 991px) {

  .carousel-caption h1,
  .section-title,
  .page-header h1 {
    font-size: 2.5rem;
  }

  .property-detail-title {
    font-size: 2rem;
  }

  .property-sidebar {
    margin-top: 50px;
  }

  .gallery-main img {
    height: 350px;
  }
}

@media (max-width: 767px) {

  .carousel-caption h1,
  .section-title,
  .page-header h1 {
    font-size: 2rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .stats-section h2 {
    font-size: 2.5rem;
  }

  section {
    padding: 60px 0;
  }

  .property-detail-title {
    font-size: 1.8rem;
  }

  .property-features-list {
    columns: 1;
  }

  .gallery-main img {
    height: 300px;
  }
}

@media (max-width: 575px) {

  .carousel-caption h1,
  .section-title,
  .page-header h1 {
    font-size: 1.8rem;
  }

  .carousel-caption .cta-btn {
    padding: 10px 20px;
  }

  .testimonial-card {
    min-height: 250px;
  }

  .property-detail-title {
    font-size: 1.6rem;
  }

  .property-detail-price {
    font-size: 1.5rem;
  }

  .gallery-main img {
    height: 250px;
  }
}

/* Services Page */
.service-features {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.service-features li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

.why-choose-item {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.why-choose-item:hover {
  background-color: rgba(245, 197, 24, 0.1);
  transform: translateY(-3px);
}

.stat-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content {
  background-color: var(--secondary);
  padding: 20px;
  border-radius: 8px;
  flex-grow: 1;
  border-left: 3px solid var(--accent);
}

.step-content h4 {
  color: var(--accent);
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .process-step {
    flex-direction: column;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .step-content {
    width: 100%;
  }
}


/* Gallery Styles */
.gallery-grid {
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
}