/* RESET */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #0e0e0e;
  --dark2: #1a1a1a;
  --mid: #2d2d2d;
  --text: #d4d4d4;
  --text-light: #f5f5f5;
  --white: #ffffff;
  --border: rgba(201,168,76,0.25);
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'DM Sans', sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Nunito',sans-serif;background:#f3f3f3;}
h1,h2,h3{font-family:'Cormorant Garamond',serif}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.img-fluid{
  width: 100%;
}

.logo{
  width: 100px;
}

/* HEADER */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:0px 50px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:transparent;
  transition:0.3s;
}

header.scrolled{
  background:#ffffff;
  box-shadow: 3px 2px 10px 0px #ddd;
}

header.scrolled .nav-menu a{
  color: #000;
}

header.scrolled .enquire{
  background: #162a45;
  color: #fff;
}

.nav-menu > ul{
  margin-bottom: 0 !important;
}

.logo{color:#fff;font-size:22px}

/* NAV MENU */
.nav-menu ul{
  display:flex;
  list-style:none;
}

.nav-menu li{
  position:relative;
}

.nav-menu a{
  color:#fff;
  padding:10px 15px;
  text-decoration:none;
  display:block;
}

/* ONLY main menu flex */
.nav-menu > ul{
  display:flex;
}

/* dropdown ko flex se bachao */
.dropdown-menu{
  display:none !important;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

/* FORCE FIX DROPDOWN */
.dropdown-menu{
  display:none !important;   /* always hidden */
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:200px;
  flex-direction:column;
  z-index:999;
}

/* REMOVE FLEX INHERIT */
.dropdown-menu{
  display:none !important;
  background: #162a45;
}

.dropdown-menu li{
  display:block;
}

/* ONLY SHOW ON HOVER */
.dropdown:hover > .dropdown-menu{
  display:block !important;
}

/* BUTTON */
.enquire{
  background:#fff;
  border:none;
  padding:8px 20px;
  border-radius:25px;
  color: #222;
  text-decoration: none;
}

/* MOBILE TOGGLE */
.menu-toggle{
  display:none;
  font-size:24px;
  color:#fff;
  cursor:pointer;
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  left:-100%;
  width:75%;
  height:100%;
  background:#fff;
  padding:20px;
  transition:0.3s;
  z-index:1000;
}

.mobile-menu.active{
  left:0;
}

.mobile-menu ul{
  list-style:none;
}

.mobile-menu li{
  margin:15px 0;
}

/* MOBILE DROPDOWN */
.mobile-dropdown ul{
  display:none;
  padding-left:15px;
}

.mobile-dropdown.active ul{
  display:block;
}

/* HERO */
.hero{
  position:relative;
}

.hero-slider{
  position:relative;
  height:420px;
  overflow:hidden;
}

.hero-slide{
  position:absolute;
  width:100%;
  opacity:0;
  transition:0.6s ease;
}

.hero-slide.active{
  opacity:1;
  z-index:1;
}

.hero-slide img{
  width:100%;
}

@media(max-width: 567px){
  .hero{
    margin-top: 22%;
  }
}

/* SEARCH */
.search-box{
  width:75%;
  margin:-80px auto 40px;
  background:#ffffff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  position:relative;
  z-index:5;
}

.search-box h2{
  margin-bottom:15px;
}

.tabs button{
  padding:8px 18px;
  border-radius:30px;
  border:1px solid #bbb;
  margin-right:10px;
  background:none;
}

.tabs .active{
  background:#162a45;
  color:#fff;
}

.search-input{
  display:flex;
  margin-top:15px;
}

.search-input input{
  width: 100%;
  padding:8px;
  border-radius:40px;
  border:1px solid #ccc;
  font-size: 13px;
}

.section-header h1{
  font-size: 22px;
    font-weight: 600;
}

.section-header{
  gap: 0;
}

.section-title{
    font-size: 22px;
}

.search-input button{
  width:55px;
  height:55px;
  border-radius:50%;
  border:none;
  background:#162a45;
  color:#fff;
  margin-left:-60px;
}

/* PROJECTS */
.projects{
  padding:40px;
}

.projects h2{
  margin-bottom:5px;
}

.sub{
  color:#777;
  margin-bottom:20px;
}

/* CARDS */
.cards{
  display:flex;
  gap:20px;
  overflow:hidden;
}

.card{
  min-width:260px;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.card-top{
  height:150px;
  background:linear-gradient(180deg,#6c63ff,#3a2e7a);
  position:relative;
}

.badge{
  position:absolute;
  top:10px;
  left:3%;
  background:#00984a;
  color:#fff !important;
  padding:4px 10px;
  border-radius:20px;
  font-size:12px;
}

.highlights-box {
    position: relative;
    z-index: 1;
    background-color: #282828;
}

.highlights-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/sections-bg.webp) center/cover no-repeat;
    opacity: 0.1; /* image opacity */
    z-index: -1;
}

.highlights-box .section-title, .highlights-box .about-content p{
  color: #fff !important;
}

.location-advantage .about-content ul{
        font-size: 20px;
    line-height: 2;
}

.heart{
  position:absolute;
  right:10px;
  top:10px;
  color:#fff;
}

.card-body{
  padding:15px;
}

.price{font-weight:600}
.title{font-size:14px;margin:5px 0}
.location{font-size:12px;color:#777}

.features{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  margin:10px 0;
}

.agent{
  display:flex;
  justify-content:space-between;
  font-size:12px;
}

/* ARROWS */
.slider{
  position:relative;
}

.arrow{
  position:absolute;
  top:40%;
  transform:translateY(-50%);
  width:35px;
  height:35px;
  border-radius:50%;
  border:none;
  background:#ddd;
  cursor:pointer;
}

.arrow.right{
  right:0;
  background:#000;
  color:#fff;
}

.arrow.left{
  left:0;
}

.arrow.disabled{
  opacity:0.3;
  pointer-events:none;
}

@media(min-width: 769px){
  .bottom-menu{
    display: none;
  }
}

/* MOBILE */
@media(max-width:768px){

.nav-menu,
.enquire{
  display:none;
}

.menu-toggle{
  display:block;
  color: #222222;
}

.search-box{
  width:95%;
  padding: 10px 20px;
}

.cards{
  overflow-x:auto;
}

.arrow{
  display:none;
}

.bottom-menu{
  position:fixed;
  bottom:0;
  width:100%;
  background:#02063d;
  display:flex;
  justify-content:space-around;
  padding:10px;
  box-shadow:0 -5px 10px rgba(0,0,0,0.1);
}

header{
  padding: 0px 10px;
  background: #ffffff;
}

}

 .section-padding {
      padding: 60px 0;
    }

    .heading span {
      color: #d4a017;
      font-weight: 700;
    }

    .heading {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .para {
      color: #6c757d;
      font-size: 14px;
      line-height: 1.7;
    }

    .btn-custom {
      border: 1px solid #000;
      padding: 10px 20px;
      font-size: 14px;
      transition: 0.3s;
    }

    .btn-custom:hover {
      background: #000;
      color: #fff;
    }

    .image-box img {
      width: 100%;
      border-radius: 6px;
    }

    /* Background text (AGRA) */
    .bg-text {
      position: absolute;
      font-size: 120px;
      color: rgba(0,0,0,0.05);
      font-weight: 700;
      bottom: -20px;
      left: 0;
      z-index: 0;
    }

    .content-box {
      position: relative;
      z-index: 2;
    }

    @media (max-width: 768px) {
      .heading {
        font-size: 22px;
      }

      .bg-text {
        font-size: 70px;
      }
    }

    /*featured projects*/
    /* Section */
.section-padding {
  padding: 60px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.section-title span {
  color: #d4a017;
}

/* Card */
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: 100%;
}

/* Fixed equal height */
.row-1 .work-card {
  height: 350px;
}

.row-2 .work-card {
  height: 250px;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* Overlay */
.work-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.work-title {
  font-size: 18px;
  font-weight: 600;
}

.work-sub {
  font-size: 13px;
  opacity: 0.8;
}

/* Hover */
.work-card:hover img {
  transform: scale(1.1);
}

/* Center icon */
.hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: #d4a017;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.4s;
}

.work-card:hover .hover-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* Mobile */
@media (max-width: 768px) {
  .row-1 .work-card,
  .row-2 .work-card {
    height: 220px;
  }
}


/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1556911220-bff31c812dba') center/cover no-repeat;
  padding: 120px 0 60px;
  color: #fff;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-small {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4a017;
}

.cta-title {
  font-size: 36px;
  font-weight: 600;
  margin: 15px 0;
}

.cta-btn {
  background: #d4a017;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  border: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #b89014;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(0,0,0,0.85);
  color: #ccc;
  padding: 50px 0 20px;
}

.footer h6 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer p,
.footer a {
  font-size: 13px;
  color: #bbb;
  text-decoration: none;
}

.footer a:hover {
  color: #d4a017;
}

.footer .logo {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.phone {
  margin-top: 10px;
  font-weight: 500;
}

.newsletter input {
  background: #222;
  border: none;
  padding: 8px;
  color: #fff;
  width: 70%;
}

.newsletter button {
  background: #d4a017;
  border: none;
  padding: 8px 12px;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .cta-title {
    font-size: 24px;
  }

  .cta-section {
    padding: 80px 0 40px;
  }

  .newsletter input {
    width: 100%;
    margin-bottom: 10px;
  }

  .newsletter button {
    width: 100%;
  }
}


/* Section */
.trusted-section {
  padding: 70px 0;
}

/* Left Side */
.trusted-title {
  font-size: 36px;
  font-weight: 600;
}

.trusted-title span {
  color: #999;
  font-weight: 400;
}

.trusted-desc {
  font-size: 14px;
  color: #777;
  margin-top: 15px;
  max-width: 400px;
}

/* Avatars */
.avatar-group img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: -10px;
  border: 2px solid #fff;
}

/* Stats */
.stats {
  margin-top: 20px;
}

.stat-item h4 {
  font-weight: 600;
}

.stat-item p {
  font-size: 12px;
  color: #777;
}

/* Divider */
.divider {
  width: 2px;
  background: #ddd;
  height: 100%;
  margin: auto;
}

/* Right Cards */
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

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

/* Icon */
.icon-box {
  width: 45px;
  height: 45px;
  background: #f4b740;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

/* Content */
.feature-title {
  font-weight: 600;
}

.feature-desc {
  font-size: 13px;
  color: #777;
}

.arrow {
  margin-left: auto;
  font-size: 18px;
  color: #999;
}

/* Mobile Fix */
@media (max-width: 991px) {
  .divider {
    display: none;
  }

  .trusted-title {
    font-size: 26px;
  }
}


/* Section */
.contact-section {
  min-height: 100vh;
}

/* LEFT FORM */
.form-area {
  padding: 60px 40px;
  background: #fff;
}

.form-title {
  font-size: 28px;
  font-weight: 600;
}

.form-desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

/* Inputs */
.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding-left: 0;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #000;
}

/* Phone */
.phone-group {
  display: flex;
  gap: 10px;
}

/* Option Cards */
.option-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  margin-bottom: 15px;
  transition: 0.3s;
}

.option-card.active {
  border: 2px solid #000;
  background: #f8f9fa;
}

.option-icon {
  width: 40px;
  height: 40px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* Button */
.submit-btn {
  width: 100%;
  background: #111;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-top: 10px;
}

/* RIGHT IMAGE */
.image-area {
  position: relative;
  background: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

/* Overlay */
.image-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 60, 0.6);
}

.image-content {
  position: relative;
  z-index: 2;
}

.quote {
  font-size: 18px;
  line-height: 1.6;
}

.author {
  margin-top: 20px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .image-area {
    min-height: 300px;
  }

  .form-area {
    padding: 40px 20px;
  }
}



/*search*/
/* TAB BUTTON */
.tab-btn{
  padding:8px 18px;
  border-radius:30px;
  border:1px solid #bbb;
  margin-right:10px;
  background:none;
  cursor:pointer;
}

.tab-btn.active{
  background:#162a45;
  color:#fff;
}

/* TAB CONTENT */
.tab-content{
  display:none;
}

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


/*projects*/
/* ─── PROJECTS SECTION ─── */
.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #162a45;
    line-height: 1.15;
}
.projects-section { padding: 7rem 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.project-card {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.project-card.featured {
  grid-column: span 2;
  aspect-ratio: unset;
}
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover .project-img { transform: scale(1.07); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 50%, transparent 100%);
  transition: opacity 0.4s;
}
.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  transform: translateY(0);
  transition: transform 0.4s;
}
.project-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.project-location {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.project-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.project-card.featured .project-name { font-size: 1.8rem; }
.project-type {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 1rem;
}
.project-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}
.project-card:hover .project-explore {
  opacity: 1;
  transform: translateY(0);
}
.project-explore::after { content: '→'; }

/* placeholder gradient imgs */
.img-placeholder {
  width: 100%; height: 100%;
  display: block;
  transition: transform 0.7s ease;
}
.project-card:hover .img-placeholder { transform: scale(1.07); }
.section-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.5rem;
  text-align: center;
}
.about-badge-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.feature-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.feature-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.feature-text p { font-size: 0.78rem; color: #777; line-height: 1.5; }


/* ─── HOW IT WORKS ─── */
.how-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;text-align:center;position:relative}
.how-grid::before{content:'';position:absolute;top:36px;left:15%;right:15%;height:2px;background:linear-gradient(to right,var(--primary),var(--secondary));z-index:0}
.how-step{position:relative;z-index:1}
.how-num{width:72px;height:72px;border-radius:50%;background:#fff;border:2px solid var(--primary);margin:0 auto 16px;display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:800;color:var(--primary);box-shadow:0 4px 16px rgba(29,111,164,.2)}
.how-title{font-size:15px;font-weight:700;margin-bottom:8px;color:#1a1a2e}
.how-desc{font-size:13px;color:var(--text-muted);line-height:1.6}


/*lisiting */
.demand-section{
    background:#f5f7fb;
}

.section-padding{
    padding:90px 0;
}

.title-wrapper{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

.title-wrapper h2{
    font-size:42px;
    font-weight:800;
    color:#15233c;
    margin:0;
}

.info-icon{
    font-size:24px;
    color:#718096;
}

.section-header p{
    color:#67748e;
    font-size:18px;
    margin-bottom:35px;
}

.demand-tabs{
    gap:25px;
    border-bottom:none;
    margin-bottom:30px;
    flex-wrap:nowrap;
    overflow-x:auto;
}

.demand-tabs::-webkit-scrollbar{
    display:none;
}

.demand-tabs .nav-link{
    border:none;
    background:none;
    color:#33415c;
    font-size:22px;
    font-weight:600;
    padding:0 0 14px;
    border-bottom:3px solid transparent;
    white-space:nowrap;
}

.demand-tabs .nav-link.active{
    color:#111827;
    border-color:#1f6fd6;
}

.demand-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    height:100%;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
    border:1px solid #e8edf5;
    transition:0.4s;
}

.demand-card:hover{
    transform:translateY(-8px);
}

.demand-card h3{
    font-size:34px;
    font-weight:800;
    color:#1a2b49;
    margin-bottom:10px;
}

.card-subtitle{
    color:#8a94a8;
    font-size:18px;
    margin-bottom:30px;
}

.locality-item{
    margin-bottom:28px;
}

.locality-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:10px;
}

.locality-top h4{
    font-size:28px;
    font-weight:700;
    color:#223554;
    margin:0;
}

.locality-top span{
    color:#53627d;
    font-size:18px;
}

.progress{
    height:10px;
    border-radius:30px;
    background:#e7edf7;
    overflow:hidden;
}

.progress-bar{
    background:#9ecdf5;
    border-radius:30px;
}

.small-bar{
    width:10%;
}

.extra-small{
    width:6%;
}

.view-link{
    display:inline-block;
    margin-top:12px;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    color:#1570ef;
}

@media(max-width:991px){

    .title-wrapper h2{
        font-size:34px;
    }

    .demand-tabs .nav-link{
        font-size:18px;
    }

    .demand-card{
        padding:28px;
    }

    .demand-card h3{
        font-size:28px;
    }

    .locality-top h4{
        font-size:22px;
    }

}

@media(max-width:576px){

    .section-padding{
        padding:40px 0;
    }

    .title-wrapper h2{
        font-size:28px;
    }

    .section-header p{
        font-size:15px;
    }

    .demand-card{
        padding:24px;
    }

    .demand-card h3{
        font-size:24px;
    }

    .card-subtitle{
        font-size:15px;
    }

    .locality-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .locality-top h4{
        font-size:20px;
    }

    .locality-top span{
        font-size:15px;
    }

    .view-link{
        font-size:17px;
    }

}


/*featured project*/
.section {
    width: 100%;
    padding: 2rem;
}
.section-header {
    margin-bottom: 1.5rem;
  }

  .section-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
  }

  .section-header p {
    font-size: 13px;
    color: #888;
  }

  .section-header a {
    color: #c97b5a;
    text-decoration: none;
    font-weight: 500;
  }

  /* Main layout */
  .fp-main {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 16px;
    align-items: start;
  }

  /* Left thumbnails */
  .fp-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .fp-nav-btns {
    display: flex;
    gap: 6px;
    margin-bottom: 4px;
  }

  .fp-nav-btns button {
    flex: 1;
    background: #fff;
    border: 1px solid #e5ddd7;
    border-radius: 8px;
    padding: 5px 0;
    cursor: pointer;
    color: #888;
    font-size: 15px;
    transition: background 0.15s, color 0.15s;
  }

  .fp-nav-btns button:hover { background: #f0e8e0; color: #c97b5a; }
  .fp-nav-btns button:disabled { opacity: 0.35; cursor: default; }

  .fp-thumb-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .fp-thumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #fff;
    border: 1.5px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .fp-thumb.active {
    border-color: #c97b5a;
    box-shadow: 0 0 0 3px rgba(201,123,90,0.1);
  }

  .fp-thumb:hover:not(.active) { border-color: #e5c9b8; }

  .fp-thumb img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #eee;
  }

  .fp-thumb-name {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.35;
  }

  /* Right panel */
  .fp-right {
    border-radius: 16px;
    border: 1.5px solid #e8c9b5;
    background: #fff;
    overflow: hidden;
  }

  /* Progress bar */
  .fp-progress {
    height: 3px;
    background: #f0e4db;
  }

  .fp-progress-fill {
    height: 100%;
    background: #c97b5a;
    width: 0%;
    transition: width 0.05s linear;
  }

  /* Slide */
  .fp-slide { display: none; }
  .fp-slide.active { display: flex; }

  /* Image + detail side by side */
  .fp-slide-img {
    position: relative;
    width: 55%;
    flex-shrink: 0;
  }

  .fp-slide-img img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
  }

  .fp-slide-img .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
    pointer-events: none;
  }

  .fp-pause-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.45);
    border: none;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    transition: background 0.2s;
  }

  .fp-pause-btn:hover { background: rgba(0,0,0,0.65); }

  .fp-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
  }

  .fp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .fp-dot.active {
    background: #fff;
    transform: scale(1.2);
  }

  /* Detail panel */
  .fp-detail {
    flex: 1;
    padding: 20px 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid #f0e4db;
  }

  .fp-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
  }

  .fp-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fdf0e8;
    border: 1px solid #e8c9b5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #c97b5a;
  }

  .fp-brand-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.1;
  }

  .fp-brand-link {
    font-size: 11px;
    color: #c97b5a;
    cursor: pointer;
  }

  .fp-project-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 3px;
  }

  .fp-project-name a{
    color: #1a1a1a;
    text-decoration:none;
  }

  .fp-location {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
  }

  .fp-rera {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 500;
    color: #2a7a4a;
    background: #eaf6ef;
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 14px;
  }

  .fp-specs {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
  }

  .fp-spec {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .fp-spec::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c97b5a;
    flex-shrink: 0;
  }

  .fp-price {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
  }

  .fp-price span {
    font-size: 13px;
    color: #aaa;
    font-weight: 400;
  }

  .fp-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .fp-cta {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s;
  }

  .fp-cta:hover { background: #333; }

  .fp-heart {
    background: none;
    border: 1.5px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #bbb;
    font-size: 17px;
    transition: border-color 0.2s, color 0.2s;
  }

  .fp-heart:hover, .fp-heart.liked { border-color: #e05c5c; color: #e05c5c; }

  .fp-footer-links {
    display: flex;
    gap: 16px;
    padding-top: 10px;
    border-top: 1px solid #f0e4db;
  }

  .fp-footer-links button {
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
  }

  .fp-footer-links button:hover { color: #c97b5a; }

  /* SVG icons inline */
  .icon { display: inline-flex; align-items: center; justify-content: center; }

  @media (max-width: 720px) {
    .fp-main { grid-template-columns: 1fr; }
    .fp-slide { flex-direction: column; }
    .fp-slide-img { width: 100%; }
    .fp-slide-img img { min-height: 200px; }
    .fp-detail { border-left: none; border-top: 1px solid #f0e4db; }
  }

  /*call*/
   .card {
    width: 100%;
    padding: 2rem;
    background: #fff;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    box-shadow: none;
  }

  /* ---- LEFT SIDE ---- */
  .left {
    position: relative;
    background: linear-gradient(160deg, #162a45 0%, #162a45 40%, #1c428a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 2rem 0;
    overflow: hidden;
  }

  .left-top {
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .stars {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }

  .trusted {
    font-size: 13px;
    color: #ff6603;
    margin-bottom: 10px;
  }

  .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
  }

  /* Arch image container */
  .arch-wrap {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .arch-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 400px;
    border-radius: 50% 50% 0 0;
    overflow: hidden;
  }

  .arch-city {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .agent-img {
    position: absolute;
    bottom: 0;
    left: 83%;
    transform: translateX(-50%);
    height: 340px;
    object-fit: contain;
    object-position: bottom;
    z-index: 2;
  }

  /* ---- RIGHT SIDE ---- */
  .right {
    padding: 2.5rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
  }

  .field {
    margin-bottom: 1rem;
  }

  .field input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e0dbd5;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
  }

  .field input::placeholder { color: #bbb; }
  .field input:focus { border-color: #c97b5a; }

  /* WhatsApp toggle row */
  .wa-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: -6px;
    margin-bottom: 1rem;
  }

  .wa-label {
    font-size: 12px;
    color: #888;
  }

  .toggle {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
  }

  .toggle input { opacity: 0; width: 0; height: 0; }

  .toggle-slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 22px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  }

  .toggle input:checked + .toggle-slider { background: #2ecc71; }
  .toggle input:checked + .toggle-slider::before { transform: translateX(18px); }

  /* I am a */
  .role-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .role-label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
  }

  .role-btn {
    padding: 7px 18px;
    border: 1.5px solid #e0dbd5;
    border-radius: 20px;
    background: #fff;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    color: #555;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .role-btn:hover { border-color: #c97b5a; color: #c97b5a; }
  .role-btn.active { border-color: #1a1a1a; color: #1a1a1a; font-weight: 500; background: #f7f4f1; }

  /* CTA row */
  .cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .btn-expert {
    background: linear-gradient(135deg, #3ecb6f, #27ae60);
    color: #fff;
    border: none;
    border-radius: 28px;
    padding: 13px 28px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
  }

  .btn-expert:hover { opacity: 0.9; transform: translateY(-1px); }
  .btn-expert:active { transform: scale(0.98); }

  .divider {
    width: 1px;
    height: 36px;
    background: #e0dbd5;
  }

  .call-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
  }

  .call-info strong {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
  }

  .secure-note {
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .disclaimer {
    font-size: 10.5px;
    color: #bbb;
    line-height: 1.5;
  }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 700px) {
   
    .card {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .left {
      min-height: 345px;
      padding: 1.5rem 1.5rem 0;
    }

    .arch-bg {
      width: 200px;
      height: 200px;
    }

    .agent-img {
      height: 230px;
    }

    .main-title { font-size: 22px; }

    .right {
      padding: 1.5rem 0;
    }

    .cta-row { gap: 12px; }

    .divider { display: none; }
  }


  .fixed-contact-buttons{
    position:fixed;
    left:0;
    bottom:10%;
    width:100%;
    z-index:9999;
    pointer-events:none;
}

.fixed-call-btn,
.fixed-whatsapp-btn{
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: 0.4s;
    pointer-events: auto;
    bottom: 1%;
    text-decoration: none;
}

.fixed-call-btn{
    left:25px;
    background:#1b2430;
}

.fixed-whatsapp-btn{
    right:25px;
    background:#25D366;
}

.fixed-call-btn:hover,
.fixed-whatsapp-btn:hover{
    transform:translateY(-6px) scale(1.05);
    color:#fff;
}

.fixed-call-btn span,
.fixed-whatsapp-btn span{
    position:absolute;
    bottom:78px;
    background:#fff;
    color:#111;
    padding:10px 16px;
    border-radius:12px;
    font-size:14px;
    font-weight:600;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    white-space:nowrap;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.fixed-call-btn:hover span,
.fixed-whatsapp-btn:hover span{
    opacity:1;
    visibility:visible;
    bottom:84px;
}

@media(min-width:769px){
  .mobile{
    display: none;
  }
}

@media(max-width:576px){
    .desktop{
      display: none;
    }
    .hero-slide img{
          margin-top: 8%;
    }
    .search-box h2 {
        margin-bottom: 15px;
        font-size: 15px;
        font-weight: bold;
        /* font-family: 'Nunito'; */
    }
    .tab-btn.active {
      font-size: 13px;
       padding: 2px 10px;
    }
    .tabs button{
      padding: 2px 10px;
      font-size: 13px;
      margin-right: 2px;
    }
    .bottom-menu{
      z-index: 10000;
    }
    .bottom-menu a{
      color: #ffffff;
      text-decoration: none;
      font-size: 15px;
    }
    .search-input button{
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: none;
        background: #162a45;
        color: #fff;
        margin-left: -14%;
        margin-top: 0.8%;
    }
    .fixed-call-btn,
    .fixed-whatsapp-btn{
        width:58px;
        height:58px;
        font-size:22px;
    }

    .fixed-call-btn{
        left:15px;
    }

    .fixed-whatsapp-btn{
        right:15px;
    }

}

/**popup**/
.custom-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(4px);
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
}

.custom-popup-overlay.active{
    opacity:1;
    visibility:visible;
}

.custom-popup-box{
    width:100%;
    max-width:850px; /* SMALL WIDTH */
    min-height:480px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 320px;
    position:relative;
    animation:popupAnim 0.4s ease;
    box-shadow:0 30px 80px rgba(0,0,0,0.18);
}

@keyframes popupAnim{

    from{
        transform:translateY(30px) scale(0.96);
        opacity:0;
    }

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

}

.popup-close{
    position:absolute;
    top:14px;
    right:14px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#222;
    color:#fff;
    font-size:18px;
    z-index:10;
    cursor:pointer;
}

.popup-left{
    padding:50px 40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.popup-tag{
    display:inline-block;
    padding:8px 16px;
    background:#f5efe5;
    border-radius:40px;
    color:#c58b42;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:20px;
    width:max-content;
}

.popup-left h2{
    font-size: 26px;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 18px;
    font-family: 'Nunito';
    font-weight: 700;
}

.popup-left p{
    font-size:16px;
    line-height:1.7;
    color:#667085;
    margin-bottom:28px;
}

.popup-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-bottom:12px;
}

.form-group input{
    width:100%;
    height:54px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 16px;
    font-size:15px;
    outline:none;
}

.form-group input:focus{
    border-color:#c58b42;
}

.form-group select{
    width: 100%;
    height: 54px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
}

.form-group select:focus{
    border-color:#c58b42;
}

.form-group textarea{
    width: 100%;
    height: 54px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
}

.form-group textarea:focus{
    border-color:#c58b42;
}

.form-group button{
    width:100%;
    height:54px;
    border:none;
    border-radius:12px;
    background:#111827;
    color:#fff;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.form-group button:hover{
    background:#c58b42;
}

.popup-checkbox{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
    color:#777;
    font-size:13px;
}

.popup-right img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@media(max-width:768px){

    .custom-popup-box{
        grid-template-columns:1fr;
        max-width:95%;
    }

    .popup-right{
        display:none;
    }

    .popup-left{
        padding:40px 24px;
    }

    .popup-left h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .form-group input, .form-group select, .form-group textarea, .form-group button{
        height: 40px;
        border-radius: 6px;
        font-size: 10px;
    }

    .popup-left h2{
        font-size:15px;
    }

    .popup-grid{
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .popup-left{
        padding:35px 20px;
    }

    .custom-popup-box{
        min-height: 400px;
    }

    .popup-close{
      width: 20px;
      height: 20px;
      font-size: 10px;
    }

}