/* RESET (optional but recommended) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* COLOR VARIABLES */
:root {
  --primary: #1e3a8a;
  --secondary: #deab2c;
  --background: #ffffff;
  --foreground: #022c3a;
  --accent: #d1d5db;
  --yol: #d19d2d;

  /* ffffff
d8d5cc
deab2c
ffff99
d19d2d */
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.text {
  color: #022c3a;
}

.footer-section {
  background: var(--foreground);
}

/* ================================
   PREMIUM NAVBAR DESIGN
================================ */

/* Navbar Base */
#navbar {
  background: rgba(2, 44, 58, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(2, 44, 58, 0.08);
  z-index: 999;
}

/* On Scroll Effect */
#navbar.scrolled {
  background: #022c3a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

/* Logo */
.navbar-brand img {
    width: 150px;
    height: auto;
  transition: 0.4s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Nav Links */
.navbar-nav .nav-link {
  color: #f5f0e1;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin: 0 12px;
  position: relative;
  transition: all 0.3s ease;
}

/* Gold Hover Underline Animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #d4af37;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #d4af37;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Active Link */
.navbar-nav .nav-link.active {
  color: #d4af37;
}

.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Premium Button */
#openPopup {
  background: linear-gradient(135deg, #d4af37, #b8962e);
  border: none;
  color: #1a1a1a;
  padding: 10px 22px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

#openPopup:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

/* Mobile Toggle Icon */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler i {
  color: #f5f0e1;
  font-size: 22px;
}

/* Mobile Menu Styling */
@media (max-width: 991px) {
    .navbar{
        padding:10px 20px !important;
    }
  .navbar-collapse {
    background: #022c3a;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    margin: 12px 0;
  }

  #openPopup {
    width: 100%;
    margin-top: 15px;
  }
}


.dflex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  background-color: rgb(200, 120, 15);
}

.image-size {
  width: 50px;
  height: 50px;
}

/* services page  */
.services-section {
  background: #f9fafb;
  padding: 50px 20px;
}

/* .container {
  max-width: 1100px;
  margin: auto;
} */

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 10px;
}

.section-header p {
  font-size: 20px;
  color: #6b7280;
  max-width: 600px;
  margin: auto;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

/* Card */

/* Scroll animation base */
/* .service-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
} */

/* Active when visible */
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional delay for stagger effect */
.service-card:nth-child(1) {
  transition-delay: 0.1s;
}

.service-card:nth-child(2) {
  transition-delay: 0.2s;
}

.service-card:nth-child(3) {
  transition-delay: 0.3s;
}

.service-card:nth-child(4) {
  transition-delay: 0.4s;
}


.service-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.service-card:hover {
  /* border-color: #1e3a8a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */

  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

}



.service-icon {
  font-size: 48px;
  color: #1e3a8a;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

/* services end  */

/* hero start  */
/* ===== INITIAL HIDDEN STATE ===== */
.scroll-animate h1 span,
.scroll-animate .real-text,
.scroll-animate .hero-buttons a,
.scroll-animate .hero-image {
  opacity: 0;
  transform: translateY(40px);
}

/* ===== ACTIVE STATE ===== */
.scroll-animate.active h1 span {
  animation: fadeUp 0.8s ease forwards;
}

.scroll-animate.active h1 span:nth-child(1) {
  animation-delay: 0.2s;
}

.scroll-animate.active h1 span:nth-child(2) {
  animation-delay: 0.4s;
}

.scroll-animate.active .real-text {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.scroll-animate.active .hero-buttons a:nth-child(1) {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.scroll-animate.active .hero-buttons a:nth-child(2) {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1s;
}

.scroll-animate.active .hero-image {
  animation: imageReveal 1.2s ease forwards;
  animation-delay: 1s;
}

/* ===== FLOAT EFFECT ===== */
.scroll-animate.active .image-box1 {
  animation: float 6s ease-in-out infinite;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}


.hero-section {
  background-image: url("/images/background_image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 96px 16px;
  position: relative;
}

/* Optional overlay for readability */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* .hero-container {
  position: relative;
  z-index: 1;
} */

/* .hero-section {
  background: var(--foreground);
  color: #fff;
  padding: 96px 16px;
} */

.hero-container {
  /* max-width: 1100px;
  margin: auto; */
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
  text-align: center;
}

.real-text {
  color: #fff !important;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--yol);
}

.matters-color {
  color: #fff !important;
}


.hero-content p {
  font-size: 20px;
  color: #6b7280;
  max-width: 520px;
  margin: auto auto 32px;
  line-height: 1.7;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--yol);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-primary:hover {
  /* background: var(--yol); */
  background: #deab2c;
}

.btn-outline {
  border: 2px solid var(--yol);
  color: var(--yol);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--yol);
  color: white;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
}

.image-box1 {
  height: 380px;
  border-radius: 20px;
  background: var(--yol);
  /* background-image: url("/images/home_image.png"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-content {
  text-align: center;
  color: white;
}

.image-content .emoji {
  font-size: 64px;
  margin-bottom: 16px;
}

.image-content p {
  font-size: 18px;
  font-weight: 600;
}

h1 span .matters-color {
  color: #fff;
}

@media (max-width: 1024px) {
  .header-container {
    padding: 16px;
  }
}

/* RESPONSIVE */
@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }

  .hero-content p {
    margin-left: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .image-box {
    height: 100%;
    min-height: 380px;
  }
}

/* hear end  */

/* property section start  */

.properties-section {
  position: relative;
  padding: 50px 20px;
  background-image: url("../images/card_section.jpg");
  /* your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* 🔥 KEY */
}

/* Dark overlay for readability */
.properties-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* Ensure content above background */
.properties-section .container {
  position: relative;
  z-index: 1;
}

/* .container {
  max-width: 1200px;
  margin: auto;
} */

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}


.section-header p {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 15px auto 0;
}

.featured-properties {
  padding: 30px 0;
}
.properties-grid1{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.properties-grid2{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Grid */
.properties-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: repeat(4, auto); */
  gap: 25px;
}

/* Card */
.property-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
  cursor: pointer;
  transition-delay: 0.2s;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* INITIAL STATE */
.animate-fade,
.animate-card {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* ACTIVE STATE */
.animate-fade.show,
.animate-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER EFFECT */
.property-card:nth-child(2) {
  transition-delay: 0.3s;
}

.property-card:nth-child(3) {
  transition-delay: 0.4s;
}

.property-card:nth-child(4) {
  transition-delay: 0.5s;
}

.property-card:nth-child(5) {
  transition-delay: 0.6s;
}

.property-card:nth-child(6) {
  transition-delay: 0.7s;
}



/* Image */
.property-image {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, #022c3a, #d8d5cc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  transition: transform 0.4s ease;
}

.property-image img {
  width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d19d2d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Body */
.property-body {
  padding: 20px;
}

.property-status {
  display: inline-block;
  background: #022c3a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.property-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
  color: #0f172a;
}

.property-location {
  font-size: 14px;
  color: #022c3a;
  margin-bottom: 12px;
}

.property-price {
  font-size: 22px;
  font-weight: 800;
  color: #d19d2d;
  margin-bottom: 16px;
}

/* Info */
.property-info {
  display: flex;
  gap: 5px;
  font-size: 14px;
  color: #022c3a;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.property-info p {
  margin-bottom: 0;
}

.property-info1 {
  display: flex;
  gap: 5px;
  font-size: 14px;
  color: #022c3a;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
  flex-direction: column;
}

.property-info1 .location {
  background: unset;
}

.property-info1 p {
  margin-bottom: 0;
}


.icon-color {
  color: #d19d2d;
}

/* Actions */
.property-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.property-actions button {
  flex: 1;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #022c3a;
  cursor: pointer;
  transition: color 0.3s;
}

.property-actions button:hover {
  /* color: #d19d2d; */
  color: #deab2c;
}

/* Load More */
.load-more {
  text-align: center;
  margin-top: 50px;
}

.load-more button {
  border: 2px solid #022c3a;
  color: #022c3a;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  background: transparent;
  transition: all 0.3s ease;
}

.load-more button:hover {
  background: #022c3a;
  color: #fff;
}

/* property section end  */

/* about section start  */
.about-section {
  padding: 50px 20px;
  background: #f8fafc;
}
.box {
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    text-align:center;
}

/* .container {
  max-width: 1200px;
  margin: auto;
} */

/* Layout */
.about-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-image,
.about-content {
  flex: 1;
}

/* Image Box */
.image-box {
  height: 380px;
  border-radius: 24px;
  /* background: linear-gradient(135deg, #ffff99, #d19d2d); */
  /* background: linear-gradient(135deg, #022c3a, #d8d5cc); */
  background-image: url("/images/home_image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-content {
  text-align: center;
  color: #fff;
}

.image-content .emoji {
  font-size: 60px;
  margin-bottom: 12px;
}

.image-content p {
  font-size: 18px;
  font-weight: 700;
}

/* Content */
.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #022c3a;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0;
}

.stat-item {
  padding-left: 16px;
  border-left: 4px solid;
}

/* .stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
} */
.about-stats h3 {
  font-size: 2.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.about-stats .stat-item:hover h3 {
  transform: scale(1.1);
}


.stat-item span {
  font-size: 14px;
  color: #64748b;
}

.stat-item.primary {
  border-color: #022c3a;
  color: #022c3a;
}

.stat-item.secondary {
  border-color: #d19d2d;
  color: #d19d2d;
}

.stat-item.accent {
  border-color: #94a3b8;
  color: #475569;
}

/* Button */
.btn-primary {
  display: inline-block;
  background: #d19d2d;
  color: #000;
  padding: 14px 36px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #deab2c;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* about section end  */

/* testimonial section start  */
.testimonials-section {
  padding: 50px 20px;
  background: #022c3a;
}

/* .container {
  max-width: 1200px;
  margin: auto;
} */

/* Section Header */
.section-header1 {
  text-align: center;
  margin-bottom: 60px;
}

.section-header1 h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: auto;
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 100px;
}

/* Card */
/* .testimonial-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 32px;
  border: 2px solid #e2e8f0;
  transition: all 0.4s ease;
  position: relative;
} */
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  display: flex;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.round-div img {
  width: 100px !important;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}


.round-div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  /* top: -20%;
  left: 33%; */
  top: 10px;
  left: 36%;
}

/* .round-div img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
} */

.testimonial-card:hover {
  border-color: #d19d2d;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

/* Stars */
.stars {
  color: #d19d2d;
  font-size: 20px;
  margin-bottom: 0px;
  /* margin-top: 30px; */
  margin-top: 80px;
  /* text-align: end; */
}

/* Text */
.testimonial-text {
  font-size: 18px;
  color: #0f172a;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 26px;
}

/* Client Info */
.client-info {
  border-top: 1px solid #e2e8f0;
  padding-top: 14px;
}

.client-name {
  display: block;
  font-weight: 800;
  color: #d19d2d;
}

.client-role {
  font-size: 14px;
  color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 22px;
  }
}

/* testimonial end  */

/* contact us start  */
.contact-section {
  padding: 50px 20px;
  background: #f5f3f0;
}

/* .container {
  max-width: 1100px;
  margin: auto;
} */

/* Heading */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #022c3a;
  margin-bottom: 12px;
}

.contact-header p {
  font-size: 18px;
  color: #6b7280;
}

/* Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: #ffffff;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-card .icon {
  font-size: 42px;
  margin-bottom: 14px;
  color: #d19d2d;
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #022c3a;
  margin-bottom: 6px;
}

.contact-card p {
  color: #6b7280;
}

/* Form */
.contact-form {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #d8d5cc;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d19d2d;
}

.contact-form textarea {
  resize: none;
  margin-bottom: 24px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #d19d2d;
  color: #022c3a;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #deab2c;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* contact us end  */

/* gallery section start  */
.gallery-section {
  padding: 80px 20px;
  background: #ffffff;
}

/* .container {
  max-width: 1200px;
  margin: auto;
} */

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #022c3a;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 18px;
  color: #666;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Card */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.gallery-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  transition: background 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.45);
}

/* Text Content */
.overlay-content {
  padding: 24px;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content .category {
  font-size: 14px;
  font-weight: 600;
  color: #d19d2d;
  margin-bottom: 6px;
}

.overlay-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

/* gallery section end  */

/* get consult section start  */
/* Button */
.consult-btn {
  background: #d19d2d;
  color: #022c3a;
  padding: 14px 30px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 44, 58, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Modal Box */
.modal-box {
  background: linear-gradient(135deg, #022c3a, #1a3a4a);
  width: 100%;
  max-width: 520px;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  animation: popup 0.4s ease;
}

/* Animation */
@keyframes popup {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Header */
.modal-header h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.modal-header p {
  color: #d8d5cc;
  text-align: center;
  margin-bottom: 25px;
}

/* Form */
form {
  background: white;
  padding: 25px;
  border-radius: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

input,
select {
  width: 100%;
  padding: 12px;
  border: 2px solid #d8d5cc;
  border-radius: 8px;
  font-size: 14px;
}

input:focus,
select:focus {
  border-color: #d19d2d;
  outline: none;
}

/* Submit */
.submit-btn {
  width: 100%;
  background: #d19d2d;
  color: #022c3a;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.submit-btn:hover {
  background: #deab2c;
}

.contact-wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch;
}


/* new header  */


/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  /* background-color: #1e293b; */
}

nav.scrolled {
  background: #022c3a;
  backdrop-filter: blur(8px);
  /*border-bottom: 1px solid #ddd;*/
}

.navbar-container {
  /* max-width: 1200px;
  margin: auto; */
  padding: 18px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: 700;
}

.h5-color {
  color: #b8771f;
}

.nav-link-1 {
  color: #fff;
}

.nav-link-1:hover {
  color: #666565;
}


.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  /* color: #022c3a; */
  color: #fff;
  font-size: 14px;
  transition: color 0.3s;
}

/* When navbar is scrolled */
#navbar.scrolled .nav-links a {
  color: #fff;
  /* color after scroll */
}

.nav-links a:hover {
  color: #d19d2d;
}

.nav-btn {
  background: #d19d2d;
  color: #022c3a;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.nav-btn:hover {
  color: #fff;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center/cover no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      #022c3a,
      #022c3a,
      transparent);
}

.hero-overlay-properties {
  position: absolute;
  inset: 0;
  background-image: url("/images/2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay-properties::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #022c3a; 
  opacity: .7;/* black overlay */
}
.hero.porperties{
    height: auto;
    padding:150px 0px 100px;
}
/* CONTENT */
.hero-content {
      max-width: 800px;
    /* padding: 0 20px; */
    animation: fadeUp 1.5s ease forwards;
    display: grid;
    align-items: center;
}

.hero-tag {
  color: #d19d2d;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.hero-content h2 {
  font-size: 64px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #d8d5cc;
  max-width: 600px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: #d19d2d;
  color: #022c3a;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #d19d2d;
  /* padding: 14px 32px; */
  padding: 10px 31px;
  /* margin-top: 15px; */
  border-radius: 30px;
  border: 2px solid #d19d2d;
  font-weight: 600;
  text-decoration: none;

}

.btn-primary:hover,
.btn-outline:hover {
  opacity: 0.9;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 12px;
  color: #d8d5cc;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 6px;
}

.scroll-indicator .arrow {
  font-size: 22px;
  color: #d19d2d;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -10px);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 42px;
  }

  .nav-links {
    display: none;
  }
}

/* properties start*/

.second-content {
    /* background: rgba(255, 255, 255, 0.38); */
    background: #fff;
    border-radius: 16px;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 50%;
}

.property-price-color {
  color: #000;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.color-black {
  color: #000;
}

.project-intro-main-specs-list {
     margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 4px;
}

.project-intro-main-specs-list li {
  list-style: none;
  display: flex;
  margin-bottom: 10px;
  color: #022c3a;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-size {
  margin-right: 10px;
  color: #D19D2D;
}


.scroll-nav {
  position: fixed;
  top: 80px;
  /* below header */
  width: 100%;
  background: #022c3a;
  z-index: 999;
}

/* .section {
  min-height: 100vh;
  padding: 160px 0px 0px;
} */

.scroll-nav li.active {
  color: #f5c16c;
  border-bottom: 3px solid #f5c16c;
}

.scroll-nav {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
  transition: all 0.3s ease;
}

.scroll-nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.scroll-nav ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  padding: 16px 30px;
  margin: 0;
}

.scroll-nav li {
  cursor: pointer;
  font-weight: 600;
  padding-bottom: 6px;
}

.scroll-nav li.active {
  color: #c89b2c;
  border-bottom: 3px solid #c89b2c;
}

/* IMPORTANT: prevents section hiding under header */
.section {
  padding-top: 50px 20px;
  min-height: 100vh;
}

/* overview  start */
/* Section */
.overview-section {
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 120px 20px 60px; */
    padding: 30px 0 0px 30px;
}

/* Title */
.overview-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #111;
}

/* Grid */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Text */
.overview-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

/* Image box */
.overview-image {
  height: 260px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview-image span {
  font-size: 16px;
  color: #888;
  font-weight: 500;
}

.overview-image img {
  width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-title {
    font-size: 28px;
  }

  .overview-section {
    padding-top: 20px;
  }
}

/* overview end  */

/* Amenities image start */
/* Section */
.amenities-section {
  background: #f9fafb;
    padding: 30px 0 0px 30px;
}

/* Container */
/*.container {*/
/*  max-width: 1200px;*/
/*  margin: auto;*/
/*}*/

/* Header */
.amenities-header {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.amenities-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1e293b;
}

/* Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.amenity-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.amenity-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Content */
.amenity-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.amenity-text {
  display: flex;
  flex-direction: column;
}

.amenity-id {
  color: #f97316;
  font-weight: 700;
  font-size: 18px;
}

.amenity-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

/* Icon */
.amenity-icon {
  margin-left: auto;
  font-size: 32px;
    width: 40px;
    height: 40px;
}
.amenity-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenities-header h2 {
    font-size: 28px;
  }
}

/* Amenities image start */

/* specification start  */
.specifications {
  padding: 30px 0;
  /* background: #022c3a; */
  font-family: "Georgia", serif;
}

.container {
  max-width: 1200px;
  margin: auto;
    padding: 0;
}

/* Header */
.spec-header {
  text-align: center;
  margin-bottom: 30px;
}

.spec-tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c58b2f;
  font-weight: 600;
}

.spec-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 10px 0;
}

.spec-header p {
  max-width: 600px;
  margin: auto;
  color: #6b7280;
  font-size: 18px;
}

/* Grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px 0;
}

/* Column */
.spec-column h3 {
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

/* Item */
.spec-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}

.spec-item:hover {
  transform: translateX(6px);
}

/* Icon */
.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(197, 139, 47, 0.12);
  color: #c58b2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.icon-box img{
width: 25px;height: 25px;
    object-fit: cover;
}
/* Text */
.spec-item h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.spec-item p {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

/* specifications end  */
/* floorplans start  */
.floorplans-section {
  padding: 30px 0px;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  color: #c5892f;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.floor-tabs {
     display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    border: 0px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #c5892f;
}

.tab-btn.active {
  background: #c5892f;
  border-color: #c5892f;
  color: #fff;
}

.floor-viewer {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.floor-image-wrapper {
  background: linear-gradient(135deg, #c5892f, #b8771f);
  padding: 20px;
  border-radius: 20px;
}

.floor-image-wrapper img {
  width: 100%;
  border-radius: 14px;
  background: #fff;
  animation: fadeScale 0.6s ease;
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.enquire-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #fff;
  color: #c5892f;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* floorplans end  */

.construction-update {
  padding: 30px 0;
  /* background: #1e293b; */
}

.container {
  max-width: 1200px;
  margin: auto;
  /*padding: 0 15px;*/
}

/* Header */
.update-header {
  text-align: center;
  margin-bottom: 50px;
}

.update-header h2 {
  font-size: 30px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 10px;
}

.brand-line {
  display: inline-block;
  width: 120px;
  height: 3px;
  background: #d7a441;
  margin-bottom: 10px;
}

/* Grid */
.update-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.update-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.update-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.update-card:hover img {
  transform: scale(1.08);
}

/* Date Badge */
.update-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #d7a441;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .update-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .update-grid {
    grid-template-columns: 1fr;
  }

  .update-card img {
    height: 220px;
  }
}

.floor-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  transition: opacity 0.3s ease-in-out;
}

.tab-btn.active {
  background: #2b2f8f;
  color: #fff;
}

/* LOCALITIES  start */
.localities-section {
  padding: 80px 0;
}

.localities-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
}

.localities-filter {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.localities-filter h3 {
  margin-bottom: 15px;
  color: #022c3a;
}

.localities-filter ul {
  list-style: none;
  padding: 0;
}

.localities-filter li {
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 8px;
  font-weight: 500;
}

.localities-filter li.active,
.localities-filter li:hover {
  background: #022c3a;
  color: #fff;
}

#map {
  width: 100%;
  height: 450px;
  border-radius: 15px;
}

/* end  */

/* properties end */

/* blog page start  */
.blog-page {
  padding: 110px 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.blog-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}

/* LEFT SIDE */
.blog-featured {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.blog-featured img {
  width: 350px;
    height: 350px;
    object-fit: cover;
  border-radius: 6px;
}

.blog-featured h2 {
  font-size: 22px;
}

.blog-items .blog-item {
  display: flex;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.blog-item img {
  width: 75px;
    height: 75px;
  border-radius: 4px;
    object-fit: cover;
}

/* SIDEBAR */
.blog-sidebar .sidebar-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 6px;
}

.sidebar-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box ul li {
  padding: 8px;
  border: 1px solid #ddd;
  margin-bottom: 8px;
  cursor: pointer;
}

.social-icons a {
  margin-right: 8px;
  display: inline-block;
  background: #d19d2d;
  color: #fff;
  padding: 6px 10px;
  border-radius: 50%;
  text-decoration: none;
}

/* CONTACT FORM */
.contact-box input,
.contact-box select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}

.contact-box button {
  width: 100%;
  padding: 10px;
  background: #d19d2d;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-wrapper {
    grid-template-columns: 1fr;
  }

  .blog-featured {
    flex-direction: column;
  }

  .blog-featured img {
    width: 100%;
  }
}

.blog-grid-section {
  padding: 60px 0;
  /* background: #f8f9fb; */
}

.container {
  max-width: 1200px;
  margin: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
}

.blog-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #17c3c8;
  color: #fff;
  padding: 8px 10px;
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
  border-radius: 3px;
  font-weight: bold;
}

.blog-content {
  padding: 15px;
}

.blog-meta {
  font-size: 13px;
  color: #666;
}

.blog-meta a {
  color: #17c3c8;
  text-decoration: none;
}

.blog-content h3 {
  font-size: 16px;
  margin-top: 8px;
  line-height: 1.4;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-detail-section {
  padding: 100px 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.blog-layout {
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 40px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 16px;
  /* margin-bottom: 10px; */
}

.breadcrumb a {
  color: #17c3c8;
  text-decoration: none;
}

/* Title & Meta */
.blog-title {
  font-size: 28px;
  margin-bottom: 10px;
  /* margin-top: 30px; */
}

.blog-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.blog-meta .category {
  color: #17c3c8;
  font-weight: 600;
}

/* Image */
.blog-image {
  position: relative;
  margin-bottom: 25px;
}

.blog-image img {
  width: 100%;
  border-radius: 4px;
}

.blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #17c3c8;
  color: #fff;
  padding: 8px;
  font-size: 12px;
  text-align: center;
}

/* Content */
.blog-description p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #333;
}

.blog-description ul {
  margin: 15px 0 20px 20px;
}

.blog-description li {
  margin-bottom: 8px;
}

.blog-description h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Sidebar */
.blog-sidebar .sidebar-box {
  border: 1px solid #e5e5e5;
  padding: 15px;
  margin-bottom: 25px;
}

.search-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
}

.category-list li {
  padding: 8px;
  border: 1px solid #e5e5e5;
  margin-bottom: 8px;
}

.social-icons a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: #d19d2d;
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 8px;
  border-radius: 50%;
  text-decoration: none;
  align-items: center;
}

.consult-form input,
.consult-form select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}

.consult-form button {
  width: 100%;
  padding: 10px;
  background: #b8771f;
  border: none;
  color: #fff;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}


/* blog page end  */

.project-wrapper {
  display: flex;
  gap: 40px;
  padding: 40px;
}

.project-menu {
  position: sticky;
  top: 120px;
  width: 260px;
}

.project-menu ul {
  list-style: none;
  padding: 0;
}

.project-menu li {
  margin-bottom: 12px;
}

.project-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.project-menu a.active {
  background: #b8771f;
  color: #fff;
}

.project-content {
  flex: 1;
}

.content-section {
  padding: 80px 0;
  min-height: 100vh;
  border-bottom: 1px solid #eee;
}

.page-layout {
  display: flex;
  max-width: 1200px;
  margin: auto;
}



#sidebarNav {
  /* box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px; */
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-right: 2px solid #FBF58C;
  /* height: calc(100vh - 335px); */
  height: 90vh;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}

#sidebarNav i {
  color: #b8771f;
}

/* Sidebar */
.sidebar {
  position: sticky;
  /* top: 100px; */
  top: 80px;
  /* below header */
  width: 220px;
  height: fit-content;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li a {
  display: block;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  /* margin-bottom: 15px; */
}

.sidebar li a:hover {
  background: #f5f5f5;
}

.sidebar li a.active {
  color: #fff;
  border-left: 3px solid #b8771f;
  font-weight: 600;
  background: #022C3A;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

/* Content */
.content {
  flex: 1;
  /*padding-left: 40px;*/
}
.sidebar-padding{
    padding: 20px;
}
.section {
  padding: 80px 0;
  min-height: 400px;
  border-bottom: 1px solid #eee;
}

.header-content {
  padding: 100px 0 0 0;
}


/* SHARE Start */
.share-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
  justify-content: space-between;
}

.share-icons a {
  padding: 8px 12px;
  border-radius: 50%;
  background: #f1f1f1;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.comment-share-section {
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

/* Share Row */
.share-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.share-title {
  font-weight: bold;
  font-size: 14px;
}

.share-icons {
  display: flex;
  gap: 10px;
}

.share-icons .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
}

.icon.facebook {
  background: #1877f2;
}

.icon.twitter {
  background: #000;
}

.icon.linkedin {
  background: #0a66c2;
}

.icon.whatsapp {
  background: #25d366;
}

/* Comment Box */
.comment-box {
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}

.comment-header {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  font-size: 13px;
  color: #555;
}

.comment-input {
  display: flex;
  gap: 10px;
  padding: 12px;
}

.avatar {
  width: 63px;
  height: 63px;
  background: #cfd4da;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar i {
  font-size: 30px;
}

.comment-input textarea {
  width: 100%;
  min-height: 60px;
  resize: none;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.plugin-text {
  padding: 10px 12px;
  font-size: 12px;
  color: #1877f2;
}


/* SHARE End */

/* privacy */
/* HERO */
.privacy {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

.Privacy-heading {
  text-align: center;
}

.Privacy-heading h2 {
  color: #fff;
}

/* BACKGROUND IMAGE */
.privacy-bg {
  position: absolute;
  inset: 0;
  background: url('hero.jpg') center/cover no-repeat;
  z-index: -1;
}

.privacy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      #022c3a,
      #022c3a,
      transparent);
}

.privacy-policy-section {
  padding: 30px 0;
  background-color: #ffffff;
}

.privacy-content {
  margin: 0 auto;
  text-align: left;
  font-size: 18px;
  color: #444;
  line-height: 1.8;
}

.updated-date {
  /* text-align: center; */
  font-size: 15px;
  color: #777;
  margin-bottom: 10px;
}

.privacy-content h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #022c3a;
}

.privacy-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #022c3a;
  font-size: 16px;
}

.privacy-content ul {
  padding-left: 20px;
}

.privacy-content ul li {
  margin-bottom: 8px;
}

/* privacy end  */

/* search bar start */

.property-search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  /* max-width: 1100px;
  margin: auto; */
  /* padding: 0 0 0 5px; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: Arial, sans-serif;
  border: 1px solid #b8771f;
}

/* Common item */
.search-item {
  display: flex;
  align-items: center;
  padding: 5px;
  border-right: 1px solid #e5e5e5;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

/* Location */
/* .location {
  background: #b8771f;
  color: #fff;
  font-weight: 600;
  min-width: 130px;
  justify-content: space-between;
  height: -webkit-fill-available;
  padding: 0 10px;
} */
.location {
  background: #b8771f;
  min-width: 130px;
  padding: 0;
}

/* Remove default select styles */
.location-select {
  width: 100%;
  height: 57px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  outline: none;
  padding: 0 40px 0 16px;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg fill='white' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* Dropdown option color */
.location-select option {
  color: #000;
}

.filter-select {
  border: none !important;
}

/* Search input */
.search-input {
  flex: 1;
  gap: 10px;
}

.search-input input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}

/* Dropdowns */
.dropdown {
  min-width: 130px;
  justify-content: space-between;
  cursor: pointer;
}

/* Arrows */
.arrow {
  margin-left: 8px;
  font-size: 12px;
}

/* Search button */
.search-btn {
  background: #b8771f;
  border: none;
  color: #fff;
  width: 57px;
  height: 57px;
  font-size: 18px;
  cursor: pointer;
}

.search-Indicator {
  padding: 30px 0;
}

/* search bar end  */
.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: -30px;
    margin-top: .125rem;
}

/* Rotate arrow when parent is expanded */
.nav-item .collapse.show ~ a .arrow,
.nav-item a.collapsed .arrow {
    transition: transform 0.3s ease;
}

/* If collapsed, arrow points down (default) */
.nav-item a.collapsed .arrow {
    transform: rotate(0deg);
}

/* If expanded, arrow points up */
.nav-item .collapse.show ~ a .arrow {
    transform: rotate(180deg);
}

/*toggal button*/
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
}
.switch input { display:none; }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px; width: 18px;
    left: 3px; bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #28a745;
}
input:checked + .slider:before {
    transform: translateX(21px);
}
/*toggal button*/
/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Base */
#navbar .active {
  background: #022C3A !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-btn {
    display: none;
    /* optional */
  }
}