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

    body{
      background:#363c40;
      color:#fff;
      font-family: 'Segoe UI', sans-serif;
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
      color:#d4a436;
    }

    section{
      padding:60px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:50px;
    }

    .section-title h2{
      font-size:42px;
      font-weight:700;
      color:#d4a436;
    }

    .section-title p{
      color:#ccc;
    }

/*==============================
        NAVBAR
==============================*/

.navbar{
    background:#000;
    padding:12px 0;
    border-bottom:1px solid rgba(212,164,54,.15);
    transition:.3s;
    z-index:999;
}

.navbar-brand img{
    max-height:60px;
}

.navbar-nav{
    align-items:center;
}

.navbar-nav .nav-item{
    position:relative;
    margin:0 6px;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-size:16px;
    font-weight:600;
    padding:15px 12px !important;
    transition:.3s;
    position:relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link{
    color:#d4a436 !important;
}

/* Bottom Border Animation */

.navbar-nav .nav-link::after{
    content:"";
    /*position:absolute;*/
    left:50%;
    bottom:6px;
    width:0;
    height:2px;
    /*background:#d4a436;*/
    transition:.35s;
    transform:translateX(-50%);
}

/*.navbar-nav .nav-link:hover::after,*/
/*.navbar-nav .nav-link.active::after,*/
/*.navbar-nav .show>.nav-link::after{*/
/*    width:70%;*/
/*}*/

/*==============================
        DROPDOWN
==============================*/

.dropdown-menu{

    display:block;
    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.3s ease;

    min-width:250px;

    border:none;

    border-radius:12px;

    padding:10px 0;

    background:#fff;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    margin-top:0;

}

/* Hover */

.nav-item.dropdown:hover>.dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* Dropdown Links */

.dropdown-item{

    padding:12px 22px;

    font-weight:500;

    transition:.25s;

    color:#222;

}

.dropdown-item:hover{

    background:#d4a436;

    color:#fff;

    padding-left:30px;

}

/* Dropdown Arrow */

.dropdown-toggle::after{

    margin-left:8px;

    vertical-align:middle;

    transition:.3s;

}

.nav-item.dropdown:hover .dropdown-toggle::after{

    transform:rotate(180deg);

}

    .query-btn{
      background:#d4a436;
      color:#000;
      font-weight:600;
      padding:10px 22px;
      border-radius:5px;
      transition:.3s;
    }

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

    /* HERO */

    .hero{
      min-height:100vh;
      background:
      linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
      url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=1600&auto=format&fit=crop');
      background-size:cover;
      background-position:center;
      display:flex;
      align-items:center;
      padding: 80px 0;
    }

    .hero-content h1{
      font-size:65px;
      font-weight:800;
      line-height:1.2;
    }

    .hero-content span{
      color:#d4a436;
    }

    .hero-content p{
      margin:25px 0;
      color:#ddd;
      font-size:18px;
    }

    .hero-btn{
      padding:14px 30px;
      border:none;
      font-weight:600;
      margin-right:15px;
      transition:.3s;
    }

    .btn-gold{
      background:#d4a436;
      color:#000;
    }

    .btn-gold:hover{
      background:#ffffff;
      border:1px solid #d4a436;
      color:#000;

    }

    .btn-dark2{
      background:#1d1d1d;
      color:#fff;
      border:1px solid #d4a436;
    }

    .hero-form{
      background:rgba(0,0,0,.85);
      padding:35px;
      border-radius:15px;
      border:1px solid rgba(212,164,54,.4);
    }

    .hero-form h3{
      margin-bottom:25px;
      color:#d4a436;
      text-align:center;
    }
    .search-subtitle{
        font-size:15px;
        color:#cbcdcf;
        line-height:1.6;
        margin-bottom:22px;
    }

    .form-control,
    .form-select{
      height:52px;
      background:#111;
      border:1px solid #333;
      color:#fff;
      margin-bottom:18px;
    }

    .form-control:focus,
    .form-select:focus{
      box-shadow:none;
      border-color:#d4a436;
      background:#111;
      color:#fff;
    }



.hero-search{
    padding:28px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    transition:.4s;
}

.hero-search h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;

}

.hero-search .form-control,
.hero-search .form-select{

    height:52px;
    border-radius:10px;
    box-shadow:none;
    border:1px solid #ddd;

}

.hero-search .form-control:focus,
.hero-search .form-select:focus{

    border-color:#c9a646;
    box-shadow:0 0 0 .15rem rgba(201,166,70,.15);

}

.btn-search{

    width:100%;
    height:54px;
    border:none;
    background:#C9A646;
    color:#fff;
    border-radius:10px;
    font-weight:600;
    transition:.3s;

}

.btn-search:hover{

    background:#111;

}

.more-filter-btn{

    color:#C9A646;
    font-weight:600;
    text-decoration:none;
    cursor:pointer;

}

.more-filter-btn:hover{

    color:#e6e2e2;

}

/* Hidden Section */

.extra-filters{

    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:all .4s ease;

}

.extra-filters.show{

    max-height:400px;
    opacity:1;

}

.arrow{

    transition:.3s;

}

.arrow.rotate{

    transform:rotate(180deg);

}

@media(max-width:991px){

.hero{

    min-height:auto;
    padding:80px 0;

}

.hero-content{

    text-align:center;
    margin-bottom:40px;

}

.hero-content h1{

    font-size:42px;

}

}

    /* PROPERTY CARD */

    .property-card{
      border-radius:15px;
      overflow:hidden;

      transition:.4s;
      padding:10px;
    }

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

    .property-img{
      height:250px;
      overflow:hidden;
    }

    .property-img img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:.4s;
    }

    .property-card .section-heading p{
        color:#fff;
    }

    .property-card:hover img{
      transform:scale(1.08);
    }

    .property-card .section-heading h3{
color:#d4a436;
    }
    .property-content{
      padding:25px;
    }

    .property-content h4{
      color:#d4a436;
      margin-bottom:10px;
    }

    .price{
      font-size:22px;
      font-weight:700;
      margin-bottom:15px;
    }

    .property-btn{
      background:#d4a436;
      color:#000;
      padding:10px 20px;
      border-radius:5px;
      font-weight:600;
      display:inline-block;
    }

    /* FEATURES */

    .feature-box{
      text-align:center;
      padding:30px;
      background:#101010;
      border-radius:15px;
      border:1px solid rgba(212,164,54,.15);
      transition:.3s;
    }

    .feature-box:hover{
      transform:translateY(-6px);
      border-color:#d4a436;
    }

    .feature-box i{
      font-size:45px;
      color:#d4a436;
      margin-bottom:20px;
    }

    /* HOT DEAL */

    .deal-card{
      position:relative;
      border-radius:15px;
      overflow:hidden;
    }

    .deal-card img{
      width:100%;
      height:350px;
      object-fit:cover;
    }

    .deal-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(transparent, rgba(0,0,0,.8));
      display:flex;
      align-items:flex-end;
      padding:25px;
    }

    /* TESTIMONIAL */

    .testimonial{
      background:#111;
      padding:35px;
      border-radius:15px;
      text-align:center;
      border:1px solid rgba(212,164,54,.2);
    }

    .testimonial img{
      width:90px !important;
      height:90px;
      border-radius:50%;
      margin:auto;
      margin-bottom:20px;
      border:3px solid #d4a436;
    }

    .testimonial h5{
      color:#d4a436;
      margin-top:15px;
    }

    /* FOOTER */

    footer{
      background:#000;
      padding:60px 0 20px;
      border-top:1px solid rgba(212,164,54,.2);
    }

    .footer-title{
      color:#d4a436;
      margin-bottom:20px;
    }

    footer ul{
      list-style:none;
      padding:0;
    }

    footer ul li{
      margin-bottom:10px;
    }

    footer ul li a{
      color:#ccc;
      transition:.3s;
    }

    footer ul li a:hover{
      color:#d4a436;
    }

    .copyright{
      text-align:center;
      margin-top:40px;
      border-top:1px solid #222;
      padding-top:20px;
      color:#999;
    }

    /* TOP BUTTON */

    .top-btn{
      position:fixed;
      right:25px;
      bottom:25px;
      width:50px;
      height:50px;
      background:#d4a436;
      color:#000;
      border:none;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:22px;
      z-index:999;
      display:none;
    }

    /* OWL */

    .owl-dots .owl-dot span{
      background:#555 !important;
    }

    .owl-dots .owl-dot.active span{
      background:#d4a436 !important;
    }

    @media(max-width:991px){

      .hero{
        text-align:center;
        padding:120px 0;
      }

      .hero-content h1{
        font-size:45px;
      }

      .hero-form{
        margin-top:50px;
      }
    }


  .who-we-are{
    background:#363c40;
  }

  .main-about-img{
    border:2px solid rgba(212,164,54,.25);
  }

  .experience-box{
    position:absolute;
    right:-20px;
    bottom:30px;
    background:#d4a436;
    color:#000;
    padding:20px 30px;
    border-radius:15px;
    text-align:center;
    font-weight:700;
  }

  .experience-box h2{
    font-size:42px;
    margin-bottom:0;
  }
    
  .service-tag{
      margin-bottom:0px !important;
  }
  .section-tag{
    display:inline-block;
    background:rgb(6 6 6 / 99%);
    color:#d4a436;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
  }

    .section-headingtag
    {
        display:inline-block;
        background:rgb(6 6 6 / 99%);
        color:#d4a436;
        padding:10px 20px;
        border-radius:50px;
        margin-bottom:20px;
        font-size:42px;
        font-weight:700;
        letter-spacing:1px;
    }


  .about-title{
    font-size:48px;
    font-weight:700;
    margin-bottom:25px;
  }

  .about-text{
    color:#cfcfcf;
    line-height:1.9;
  }

  .mini-about-box{
    background:#111;
    border:1px solid rgba(212,164,54,.15);
    padding:25px;
    border-radius:15px;
    display:flex;
    gap:18px;
    align-items:flex-start;
    transition:.3s;
  }

  .mini-about-box:hover{
    transform:translateY(-5px);
    border-color:#d4a436;
  }

  .mini-about-box i{
    font-size:35px;
    color:#d4a436;
  }

  .mini-about-box h5{
    margin-bottom:5px;
  }

  .mini-about-box p{
    margin:0;
    color:#aaa;
  }

  /* WHY CHOOSE */

  .why-choose-us{
    background:#070707;
  }

  .choose-card{
    background:#111;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(212,164,54,.15);
    transition:.4s;
    height:100%;
  }

  .choose-card:hover{
    transform:translateY(-10px);
    border-color:#d4a436;
    box-shadow:0 0 30px rgba(212,164,54,.12);
  }

  .choose-icon{
    width:85px;
    height:85px;
    background:rgba(212,164,54,.12);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:25px;
  }

  .choose-icon i{
    font-size:38px;
    color:#d4a436;
  }

  .choose-card h4{
    margin-bottom:18px;
    color:#fff;
  }

  .choose-card p{
    color:#bbb;
    line-height:1.8;
  }

  /* PARTNERS */

  .partners-section{
    background:#363c40;
  }

  .partner-box{
    background:#fff;
    border-radius:15px;
    height:130px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
    transition:.3s;
  }

  .partner-box:hover{
    transform:translateY(-5px);
  }

  .partner-box img{
    width:100%;
    max-height:60px;
    object-fit:contain;
  }

  /* CALLBACK */

  .callback-section{
    background:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.82)),
    url('https://images.unsplash.com/photo-1460317442991-0ec209397118?q=80&w=1400&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
    padding:100px 0;
  }

  .callback-content h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:25px;
  }

  .callback-content p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:30px;
  }

  .callback-features{
    display:flex;
    flex-direction:column;
    gap:15px;
  }

  .callback-item{
    font-size:18px;
    color:#fff;
  }

  .callback-item i{
    color:#d4a436;
    margin-right:10px;
  }

  .callback-form{
    background:rgba(0,0,0,.85);
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(212,164,54,.25);
  }

  .callback-form h3{
    text-align:center;
    margin-bottom:25px;
    color:#d4a436;
  }

  @media(max-width:991px){

    .about-title,
    .callback-content h2{
      font-size:36px;
    }

    .experience-box{
      right:10px;
      bottom:10px;
    }

  }


  .services-section{
    background:#363c40;
    overflow:hidden;
  }

  .service-card{
    position:relative;
    background:#111;
    border-radius:22px;
    padding:24px 20px;
    overflow:hidden;
    border:1px solid rgba(212,164,54,.12);
    transition:.4s ease;
    z-index:1;
  }

  .service-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(212,164,54,.08);
    border-radius:50%;
    top:-40px;
    right:-40px;
    transition:.4s;
  }

  .service-card:hover::before{
    transform:scale(1.8);
  }

  .service-card:hover{
    transform:translateY(-10px);
    border-color:#d4a436;
    box-shadow:0 0 35px rgba(212,164,54,.12);
  }

  .service-icon{
    width:52px;
    height:52px;
    background:linear-gradient(135deg,#d4a436,#f5d27b);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    position:relative;
    z-index:2;
  }

  .service-icon i{
    font-size:28px;
    color:#000;
  }

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

  .service-content h4{
    font-size:20px;
    margin-bottom:16px;
    font-weight:700;
    color:#fff;
    min-height:74px;
  }

  .service-content p{
    color:#bdbdbd;
    line-height:1.9;
    margin-bottom:20px;
    min-height:136px;
  }

  .service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#d4a436;
    font-weight:600;
    transition:.3s;
  }

  .service-btn:hover{
    color:#fff;
  }

  .service-btn i{
    transition:.3s;
  }

  .service-btn:hover i{
    transform:translateX(6px);
  }

  @media(max-width:991px){

    .service-card{
      padding:35px 25px;
    }

  }


/* MOBILE MENU */

@media(max-width:991px){

    .navbar{
        padding:10px 0;
    }

    .navbar-brand{
        width:170px;
    }

    .navbar .container{
        position:relative;
    }

    .navbar-collapse{
        position:fixed;
        top:0;
        left:-100%;
        width:85%;
        height:100vh;
        background:#050505;
        padding:100px 30px 40px;
        transition:.5s ease;
        z-index:99999;
        display:block !important;
        overflow-y:auto;
        border-right:1px solid rgba(212,164,54,.15);
    }

    .navbar-collapse.show{
        left:0;
    }

    /* DARK OVERLAY */

    .navbar-collapse::before{
        content:'';
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background:rgba(0,0,0,.6);
        z-index:-1;
    }

    .navbar-nav{
        align-items:flex-start;
        gap:0;
    }

    .navbar-nav .nav-item{
        width:100%;
        border-bottom:1px solid rgba(255,255,255,.06);
    }

    .navbar-nav .nav-link{
        width:100%;
        padding:18px 10px !important;
        font-size:18px;
    }

    .navbar-nav .nav-link::after{
        display:none;
    }

    .query-btn{
        margin-top:30px;
        width:100%;
        text-align:center;
        display:block;
    }

}



  .why-us-modern-section{
    background:#363c40;
    overflow:hidden;
    position:relative;
  }

  .why-us-modern-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(212,164,54,.05);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(40px);
  }

  .why-us-image-wrapper{
    position:relative;
  }

  .why-main-img{
    border-radius:25px;
    border:2px solid rgba(212,164,54,.18);
    box-shadow:0 0 40px rgba(0,0,0,.45);
  }

  .floating-card{
    position:absolute;
    background:#111;
    border:1px solid rgba(212,164,54,.18);
    border-radius:18px;
    padding:18px 22px;
    display:flex;
    align-items:center;
    gap:15px;
    min-width:260px;
    box-shadow:0 10px 30px rgba(0,0,0,.45);
    animation:floatCard 3s ease-in-out infinite;
  }

  .floating-card i{
    font-size:38px;
    color:#d4a436;
  }

  .floating-card h5{
    margin-bottom:4px;
    font-size:18px;
    color:#fff;
  }

  .floating-card p{
    margin:0;
    font-size:14px;
    color:#bbb;
  }

  .card-1{
    top:40px;
    left:-40px;
  }

  .card-2{
    bottom:40px;
    right:-40px;
  }

  @keyframes floatCard{

    0%{
      transform:translateY(0);
    }

    50%{
      transform:translateY(-10px);
    }

    100%{
      transform:translateY(0);
    }

  }

  /* why-choose-us */

  .why-us-content h2{
    font-size:50px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:25px;
  }

  .why-text{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:35px;
  }

  .why-feature-item{
    display:flex;
    gap:22px;
    margin-bottom:30px;
    padding-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .why-feature-icon{
    min-width:75px;
    height:75px;
    background:rgba(212,164,54,.12);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .why-feature-icon i{
    font-size:34px;
    color:#d4a436;
  }

  .why-feature-content h4{
    font-size:24px;
    margin-bottom:10px;
    color:#fff;
  }

  .why-feature-content p{
    color:#bdbdbd;
    margin:0;
    line-height:1.8;
  }

  .why-btn-group{
    display:flex;
    gap:18px;
    margin-top:40px;
  }

  @media(max-width:991px){

    .why-us-content h2{
      font-size:36px;
    }

    .floating-card{
      position:relative;
      left:0 !important;
      right:0 !important;
      top:0 !important;
      bottom:0 !important;
      margin-top:20px;
    }

    .why-btn-group{
      flex-direction:column;
    }

  }

.services-hero {
    padding: 80px 0 15px 0px;
    background: #0b0b0b;
    color: #fff;
}

.services h2{
    font-size:2rem;
    font-weight:500;
}

  /* CONTACT PAGE */

.contact-hero{
    padding:160px 0 80px;
    background:#0b0b0b;
    color:#fff;
}


.contact-hero h1{
    font-size:55px;
    font-weight:700;
}


.contact-hero h1 span{
    color:#d6a84f;
}



.contact-hero p{
    color:#ccc;
    font-size:18px;
    line-height:1.8;
}



.contact-highlights{
    margin-top:40px;
}



.contact-highlight{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}


.contact-highlight i{

    font-size:35px;
    color:#d6a84f;

}



.contact-highlight h5{
    margin-bottom:5px;
}




.contact-card{

    background:#fff;
    padding:35px;
    border-radius:20px;
    color:#222;
    box-shadow:0 20px 50px rgba(0,0,0,.3);

}



.contact-card h3{

    margin-bottom:25px;
    font-weight:700;

}



.contact-card .form-control,
.contact-card .form-select{

    padding:14px;
    border-radius:10px;

}

.contact-info-section{

    padding:80px 0;
    background:#f8f8f8;

}

.form-control, .form-select{
    height: 52px;
    background: #ffffff;
    border: 1px solid #333;
    color: #d4a436;
    margin-bottom: 18px;
}

.form-control:focus, .form-select{
    height: 52px;
    background: #ffffff;
    border: 1px solid #333;
    color: #d4a436;
    margin-bottom: 18px;
}

.info-box{

    background:#fff;
    text-align:center;
    padding:35px;
    border-radius:20px;
    height:100%;
    transition:.3s;
    color:#2c2929;

}


.info-box:hover{

    transform:translateY(-4px);

}



.info-icon{

    width:70px;
    height:70px;
    background:#d6a84f;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:30px;

}



.info-box h4{

    margin-top:20px;
    font-weight:700;

}



.map-wrapper{
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.15);
}



@media(max-width:768px){

.contact-hero h1{
    font-size:38px;
}

}
.page-content-section{

background:#363c40;

padding:80px 0;

}


.cms-content{

color:#ffffff;

line-height:1.5;

}



.cms-content h2,
.cms-content h3{

color:#d4a436;

margin-top:25px;

}



.cms-content img{

max-width:100%;

border-radius:15px;

}



.contact-hero h1{

font-size:55px;
font-weight:800;

}



.contact-hero h1 span{

color:#d4a436;

}


@media(max-width:768px){

.contact-hero h1{

font-size:38px;

}

}
.blog-section{

background:#363c40;
padding:80px 0;

}

.blog-card{
    background:#111;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    border:1px solid rgba(212,164,54,.15);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.blog-image{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.blog-content{
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.blog-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#d4a436;
    font-size:14px;
    margin-bottom:15px;
}

.blog-meta span{
    display:flex;
    align-items:center;
    gap:6px;
}

.blog-content h3{
    margin:0 0 15px;
    line-height:1.4;
    font-size:28px;
}

.blog-content h3 a{
    color:#d4a436;
    text-decoration:none;
}

.blog-content h3 a:hover{
    color:#fff;
}

.blog-content p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:20px;
    flex:1;
}

.blog-content .btn{
    align-self:flex-start;
    border-radius:8px;
    padding:10px 24px;
    font-weight:600;
}
/*=========================
    Premium Stats Section
=========================*/

.stats-section{
    background:#070707;
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

/* Decorative Gold Glow */
.stats-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(201,166,70,.15),transparent 70%);
    top:-250px;
    left:-180px;
}

.stats-section::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:radial-gradient(circle,rgba(201,166,70,.10),transparent 70%);
    right:-180px;
    bottom:-220px;
}

.stats-section .sub-title{
    color:#c9a646;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:14px;
    display:block;
    margin-bottom:12px;
}

.stats-section h2{
    color:#fff;
}

.stats-wrapper{

    background:rgba(255,255,255,.03);
    border:1px solid rgba(201,166,70,.18);
    border-radius:20px;
    backdrop-filter:blur(12px);

}

.stat-item{

    padding:20px 20px;
    position:relative;
    border-right:1px solid rgba(201,166,70,.18);

}

.stat-item:last-child{
    border-right:none;
}

.stat-icon{

    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    border:1px solid rgba(201,166,70,.4);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#c9a646;
    font-size:30px;

    transition:.4s;

}

.stat-item:hover .stat-icon{

    background:#c9a646;
    color:#111;
    transform:rotateY(180deg);

}

.stat-item h2{

    font-size:45px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:10px;
    line-height:1;

}

.stat-item h5{

    color:#c9a646;
    font-size:18px;
    font-weight:500;
    letter-spacing:1px;
    margin-bottom:0;
    text-transform:uppercase;

}

.stat-item:hover h2{

    color:#c9a646;
    transition:.3s;

}

/* Mobile */

@media(max-width:991px){

.stat-item{

    border-right:none;
    border-bottom:1px solid rgba(201,166,70,.18);

}

.stat-item:last-child{

    border-bottom:none;

}

.stat-item h2{

    font-size:56px;

}

}
/*==================================
    PROPERTY HIGHLIGHTS
===================================*/

.highlight-card{

    background:#41484d;
    border:1px solid rgba(212,164,54,.18);
    border-radius:15px;
    padding:22px;
    display:flex;
    align-items:center;
    transition:.35s;
    height:100%;

}

.highlight-card:hover{

    transform:translateY(-5px);
    border-color:#d4a436;
    box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.highlight-icon{

    width:65px;
    height:65px;
    min-width:65px;
    border-radius:50%;
    background:#d4a436;
    color:#363c40;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-right:18px;

}

.highlight-content span{

    color:#aeb5b8;
    font-size:13px;
    display:block;
    margin-bottom:5px;

}

.highlight-content h5{

    color:#fff;
    margin:0;
    font-weight:600;

}


/*==================================
        AMENITIES
===================================*/

.amenity-card{

    background:#41484d;
    border:1px solid rgba(212,164,54,.18);
    border-radius:15px;
    padding:30px 20px;
    text-align:center;
    transition:.35s;
    height:100%;

}

.amenity-card:hover{

    background:#d4a436;
    transform:translateY(-6px);

}

.amenity-icon{

    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:rgba(212,164,54,.15);
    color:#d4a436;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    margin-bottom:18px;

    transition:.35s;

}

.amenity-card:hover .amenity-icon{

    background:#363c40;
    color:#d4a436;

}

.amenity-card h6{

    color:#fff;
    font-weight:600;
    margin-bottom:0;

}

.amenity-card:hover h6{

    color:#363c40;

}

/*===============================
    TABLES
================================*/

.pricing-table,
.inventory-table{

    margin-bottom:0;

}

.pricing-table thead,
.inventory-table thead{

    background:#d4a436;

}

.pricing-table th,
.inventory-table th{

    color:#363c40;
    border:none;
    padding:18px;
    font-weight:600;

}

.pricing-table td,
.inventory-table td{

    background:#41484d;
    color:#fff;
    border-color:rgba(255,255,255,.08);
    padding:18px;

}

.price-tag{

    color:#d4a436;
    font-weight:700;
    font-size:17px;

}

.request-price{

    color:#fff;
    font-weight:600;

}

.price-note{

    color:#d8d8d8;
    margin-top:18px;
    font-size:14px;

}

.price-note i{

    color:#d4a436;
    margin-right:6px;

}


/*===============================
    INVESTOR CARD
================================*/

.invest-card{

    background:#41484d;
    border:1px solid rgba(212,164,54,.18);
    border-radius:18px;
    padding:35px;
    height:100%;
    transition:.35s;

}

.invest-card:hover{

    transform:translateY(-5px);
    border-color:#d4a436;

}

.invest-icon{

    width:70px;
    height:70px;
    border-radius:50%;
    background:#d4a436;
    color:#363c40;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;

}

.invest-card h5{

    color:#fff;
    margin-bottom:15px;

}

.invest-card h2{

    color:#d4a436;
    font-size:36px;
    margin-bottom:5px;

}

.invest-card span{

    color:#bfc4c7;

}

.invest-list{

    padding:0;
    margin:0;
    list-style:none;

}

.invest-list li{

    color:#fff;
    margin-bottom:18px;
    font-size:16px;

}

.invest-list li:last-child{

    margin-bottom:0;

}

.invest-list i{

    color:#d4a436;
    margin-right:10px;

}

/*=============================
        INVESTOR SECTION
==============================*/

.invest-box{

    background:#41484d;
    border:1px solid rgba(212,164,54,.15);
    border-radius:15px;
    padding:35px;
    height:100%;
    transition:.4s;

}

.invest-box:hover{

    border-color:#d4a436;
    transform:translateY(-6px);

}

.invest-icon{

    width:70px;
    height:70px;

    background:#d4a436;

    color:#363c40;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

}

.invest-box h6{

    color:#d8d8d8;

    margin-bottom:10px;

}

.invest-box h2{

    color:#d4a436;

    font-size:38px;

    font-weight:700;

}

.invest-box span{

    color:#cfcfcf;

}

.invest-box ul{

    list-style:none;

    padding:0;

    margin-top:20px;

}

.invest-box li{

    color:#fff;

    margin-bottom:18px;

}

.invest-box li i{

    color:#d4a436;

    margin-right:10px;

}


/*=============================
        INVENTORY TABLE
==============================*/

.inventory-table{

    margin:0;

}

.inventory-table thead{

    background:#d4a436;

}

.inventory-table th{

    color:#363c40;

    border:none;

    padding:18px;

}

.inventory-table td{

    background:#41484d;

    color:#fff;

    padding:18px;

    border-color:rgba(255,255,255,.05);

}

.inventory-table tr:hover td{

    background:#494f53;

}


/*=============================
            CTA
==============================*/

.property-cta{

    padding:90px 0;

}

.cta-box{

    background:linear-gradient(135deg,#d4a436,#b98b18);

    border-radius:20px;

    padding:60px;

    position:relative;

    overflow:hidden;

}

.cta-box::after{

    content:'';

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    right:-80px;

    top:-80px;

}

.cta-box span{

    color:#fff;

    letter-spacing:3px;

    font-size:14px;

}

.cta-box h2{

    color:#fff;

    margin-top:12px;

    font-size:42px;

    font-weight:700;

}

.cta-box p{

    color:#fff;

    margin-top:15px;

    font-size:17px;

}

.cta-box .btn{

    min-width:210px;

}

@media(max-width:991px){

.cta-box{

padding:40px 30px;

text-align:center;

}

.cta-box h2{

font-size:32px;

}

}

.property-hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;

    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.70) 0%,
            rgba(0,0,0,.45) 35%,
            rgba(0,0,0,.15) 70%,
            rgba(0,0,0,.05) 100%
        );
}

.property-hero .container{
    position:relative;
    z-index:2;
}
.btn-whatsapp{
    background: #03b503;
    color: #fff;

}


/*======================================
        PROJECT INFO STRIP
======================================*/

.project-info-strip{
    background:#000;
    overflow:hidden;
    padding:0;
}

.project-info-strip .row{
    margin:0;
}

.project-info-strip [class*="col-"]{
    padding:0;
}

.infobox{
    height:105px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding:18px 28px;
    border-right:1px solid rgba(255,255,255,.25);
    transition:all .35s ease;
    cursor:pointer;
}

.project-info-strip .col-lg-2:first-child .infobox{
    border-left:1px solid rgba(255,255,255,.25);
}

.infobox i{
    font-size:18px;
    color:#ffffff;
    margin-bottom:10px;
    transition:.35s;
}

.infobox span{
    color:#f5f5f5;
    font-size:15px;
    font-weight:400;
    line-height:1;
}

.infobox h6{
    margin-top:8px;
    margin-bottom:0;
    color:#ffffff;
    font-size:17px;
    font-weight:700;
    line-height:1.4;
    transition:.35s;
}

/* Hover Effect */

.infobox:hover{
    background:#111;
}

.infobox:hover i{
    color:#C8A45B;
    transform:translateY(-2px);
}

.infobox:hover h6{
    color:#C8A45B;
}

/*=========================
        Tablet
=========================*/

@media (max-width:991px){

.infobox{
    height:100px;
    padding:18px;
}

.infobox i{
    font-size:17px;
}

.infobox span{
    font-size:13px;
}

.infobox h6{
    font-size:15px;
}

}

/*=========================
        Mobile
=========================*/

@media(max-width:767px){

.project-info-strip .col-6{
    border-bottom:1px solid rgba(255,255,255,.25);
}

.project-info-strip .col-6:nth-child(odd) .infobox{
    border-left:1px solid rgba(255,255,255,.25);
}

.infobox{
    height:95px;
    padding:15px;
}

.infobox i{
    font-size:16px;
    margin-bottom:8px;
}

.infobox span{
    font-size:12px;
}

.infobox h6{
    font-size:14px;
}

}


.listing-card{
    border:none;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    height:100%;
}

.listing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.property-img{
    height:260px;
    overflow:hidden;
    position:relative;
}

.property-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.listing-card:hover img{
    transform:scale(1.08);
}

.project-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#c9a646;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.status-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#111;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
}

.property-content{
    padding:12px;
}

.property-content h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.property-content h4 a{
    color:#111;
    text-decoration:none;
}

.property-location,
.developer-name{
    color:#777;
    margin-bottom:10px;
}

.project-desc{
    color:#666;
    margin-top:10px;
    min-height:70px;
}

.project-info{
    display:flex;
    justify-content:space-between;
    border-top:1px solid #eee;
    /* border-bottom:1px solid #eee; */
    padding:4px 0;
    margin:10px 0;
}

.project-info .info-box
{
        background: #fff;
    text-align: center;
    padding: 4px !important;
    border-radius: 20px;
    height: 100%;
    transition: .3s;
    color: #2c2929;
}

.info-box{
    text-align:center;
}

.info-box small{
    display:block;
    color:#999;
}

.price-box{
    margin-bottom:20px;
}

.price-box small{
    color:#999;
}

.price-box h3{
    color:#c9a646;
    font-weight:700;
    margin:0;
}


/*========================================
        PAGINATION
========================================*/

.pagination{

    gap:10px;

}

.pagination .page-item{

    margin:0 3px;

}

.pagination .page-link{

    width:45px;

    height:45px;

    border-radius:50% !important;

    border:none;

    background:#fff;

    color:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    font-weight:600;

}

.pagination .page-link:hover{

    background:#C9A646;

    color:#fff;

}

.pagination .active .page-link{

    background:#C9A646;

    color:#fff;

}

.pagination .disabled .page-link{

    opacity:.5;

}


/*========================================
        FILTER BOX
========================================*/

.filter-box{

    background:#fff;

    padding:35px;

    border-radius:18px;

    margin-top:-90px;

    position:relative;

    z-index:99;

}

.filter-box .form-control,

.filter-box .form-select{

    height:52px;

    border-radius:10px;

    border:1px solid #ddd;

}

.filter-box .btn-gold{

    height:52px;

}


/*========================================
        HERO
========================================*/

.property-hero{

    position:relative;

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.65);

}

.property-hero .container{

    position:relative;

    z-index:2;

}

.project-title{

    color:#fff;

    font-size:60px;

    font-weight:700;

}

.project-description{

    color:#ddd;

    font-size:18px;

    max-width:700px;

}

.project-tag{

    display:inline-block;

    background:#C9A646;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;

}

.breadcrumb{

    background:transparent;

}

.breadcrumb a{

    color:#fff;

    text-decoration:none;

}

.breadcrumb-item.active{

    color:#C9A646;

}


/*========================================
        MOBILE
========================================*/

@media(max-width:991px){

.project-title{

    font-size:38px;

}

.filter-box{

    margin-top:30px;

}

}

@media(max-width:767px){

.project-title{

    font-size:30px;

}

.property-content{

    padding:18px;

}

.project-info{

    flex-direction:column;

    gap:15px;

}

}


.page-banner{
    position:relative;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:130px 0;
    overflow:hidden;
}

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

.page-banner .container{
    position:relative;
    z-index:2;
}

.page-banner .section-tag{
    display:inline-block;
    padding:8px 22px;
    background:rgba(255,255,255,.15);
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:20px;
}

.page-banner h1{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.banner-subtitle{
    color:rgba(255,255,255,.9);
    font-size:18px;
    max-width:700px;
    margin:0 auto 25px;
}

.breadcrumb{
    margin:0;
    background:transparent;
}

.breadcrumb-item a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-item.active{
    color:#d4af37;
}

.breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}

@media(max-width:991px){

.page-banner{
    padding:90px 0;
}

.page-banner h1{
    font-size:38px;
}

.banner-subtitle{
    font-size:16px;
}

}

@media(max-width:576px){

.page-banner h1{
    font-size:30px;
}

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

}
.partner-box{

    background:#fff;

    padding:30px;

    border-radius:15px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.partner-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.partner-box img{

    max-height:90px;

    width:auto;

    margin:auto;

    object-fit:contain;

}

.developer-content{

    margin-top:20px;

}

.developer-content h5{

    font-weight:700;

    margin-bottom:10px;
    color:#d4a436;

}

.developer-content span{

    display:block;

    color:#888;

    margin-bottom:15px;

}


/* =========================
MODERN NAVBAR DESIGN
========================= */

.navbar{
    background:rgba(0,0,0,.92);
    backdrop-filter:blur(12px);
    padding:12px 0;
    border-bottom:1px solid rgba(212,164,54,.15);
    transition:.4s;
    z-index:9999;
}

.navbar-brand{
    width:220px;
    display:flex;
    align-items:center;
}

.navbar-brand img{
    /* width:100%;
    height:auto;
    object-fit:contain; */
    height: 34px;
}

/* NAV MENU */

.navbar-nav{
    align-items:center;
    gap:10px;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-size:16px;
    font-weight:500;
    padding:10px 18px !important;
    position:relative;
    transition:.3s;
    white-space:nowrap;
}

.navbar-nav .nav-link:hover{
    color:#d4a436 !important;
}

.navbar-nav .nav-link:hover::after{
    width:auto;
}

/* QUERY BUTTON */


.query-btn{
    background:linear-gradient(135deg,#d4a436,#f3cf77);
    color:#000;
    padding:12px 26px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
    white-space:nowrap;
}

.query-btn:hover{
    background:#fff;
    color:#000;
    transform:translateY(-2px);
}

/* TOGGLER */

.navbar-toggler{
    border:none;
    padding:8px 10px;
    box-shadow:none !important;
    background:#d4a436 !important;
}

/*.navbar-toggler-icon{*/
/*    background-image:none;*/
/*    width:30px;*/
/*    height:30px;*/
/*    position:relative;*/
/*}*/

/*.navbar-toggler-icon::before,*/
/*.navbar-toggler-icon::after,*/
/*.navbar-toggler-icon span{*/
/*    content:'';*/
/*    position:absolute;*/
/*    left:0;*/
/*    width:100%;*/
/*    height:3px;*/
/*    background:#000;*/
/*    border-radius:10px;*/
/*    transition:.3s;*/
/*}*/

/*.navbar-toggler-icon::before{*/
/*    top:5px;*/
/*}*/

/*.navbar-toggler-icon span{*/
/*    top:14px;*/
/*}*/

/*.navbar-toggler-icon::after{*/
/*    bottom:4px;*/
/*}*/
