@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');
* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
 .container{
     max-width: 1280px;
     padding: 0 15px;
     margin: 0 auto;
}
 body {
     font-family: "Inter", sans-serif;
     color: #333;
     line-height: 1.6;
     padding-top: 75px;
}
a {
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}
p{
	font-size: 16px;
	line-height: 26px;
}
:hover {
	transition: all 0.5s ease-in-out;
}
ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
img {
	max-width: 100%;
	max-height: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Outfit", sans-serif;
}

/* Header & Navigation */
 header {
     position: fixed;
     padding: 10px 0px;
     background: white;
     box-shadow: 0 2px 5px rgba(0,0,0,0.1);
     z-index: 100;
     left: 0;
     top: 0;
     right: 0;
}
.headerInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a{
    display: inline-block;
    height: 55px;
    vertical-align: top;
}
nav {
     display: flex;
     gap: 30px;
     align-items: center;
}
 nav a {
     text-decoration: none;
     color: #333;
     font-size: 17px;
     transition: color 0.3s;
}
 nav a:hover {
     color: #2563eb;
}
 .nav-buttons {
     display: flex;
     gap: 12px;
}

/* Hero Section */
 .hero {
    background-size: cover !important;     
     text-align: center;
     color: white;
     position: relative;
}
.hero:after{
    background: rgba(0,0,0,0.75);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';
}
.bannerInner{
    position: relative;
    z-index: 99;
    text-align: center;
    padding: 180px 0;
}
 .hero h1 {
     font-size: 80px;
     line-height: 1.2;
}
 .hero .highlight {
     color: #ff6700;
     font-size: 80px;
}
 .hero p {
     font-size: 18px;
     padding-top: 20px;
     margin-bottom: 30px;
}
 .hero-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
}

 .btn-primary {
     background: #2463eb;
     color: white;
     padding: 8px 25px;
     border: none;
     border-radius: 6px;
     cursor: pointer;
     font-size: 17px;
     transition: background 0.3s;
}
 .btn-primary:hover {
     background: #1d4ed8;
}
 .btn-secondary {
     background: transparent;
     color: rgb(5, 196, 63);
     padding: 8px 25px;
     border: 1px solid rgb(5, 196, 63);
     border-radius: 6px;
     cursor: pointer;
     font-size: 17px;
}
 .btn-secondary:hover{
     background: rgb(5, 196, 63);
     color: #fff;
 }
.hero-buttons a.btn-primary {
    background: #ff6700;
    color: #fff;
}
.hero-buttons a.btn-primary:hover {
    background: #fff;
    color: #000;
}
.hero-buttons a.btn-secondary{
    background: rgb(5, 196, 63);
     color: #fff;
}
.hero-buttons a.btn-secondary:hover {
     background: rgb(4, 153, 49);
     color: #fff;
}
 
/* Featured Rentals Section */
 .section {
     padding: 60px 0px;
     background: white;
}
 .section-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
}
 .section-title {
     font-size: 28px;
     font-weight: bold;
}
.section-subtitle{
    font-size: 14px;
    color: #888;
}
 .section-tag {
     background: #fef3c7;
     color: #d97706;
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 12px;
     display: inline-block;
}
.view-all {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: #333 solid 1px;
    padding: 5px 15px;
    border-radius: 5px;
}
.view-all:hover{
    color: #0d3eaf;
    border: #0d3eaf solid 1px;
}
 .properties-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
     margin-bottom: 40px;
}
 .property-card {
     background: white;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s;
}
 .property-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 1px 3px 1px rgb(27 75 135 / 50%);
}
 .property-image {
     width: 100%;
     height: 300px;
     background: #ddd;
     position: relative;
     overflow: hidden;
}
 .property-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}
.property-price {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    padding: 30px 15px 10px 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    right: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 6%) 0%, rgb(0 0 0) 100%);
}
.forrent {
    position: absolute;
    top: 10px;
    padding: 5px 10px;
    background: #ff6700bf;
    color: #fff;
    border-radius: 0 5px 5px 0;
}
 .property-details {
     padding: 20px;
}
 .property-title {
     font-size: 16px;
     font-weight: bold;
     margin-bottom: 8px;
     color: #000;
}
 .property-location {
     font-size: 15px;
     color: #888;
     margin-bottom: 12px;
     border-bottom: #ccc dashed 1px;
    padding-bottom: 12px;
}
 .property-specs {
     display: flex;
     gap: 15px;
     font-size: 15px;
     color: #666;
     margin-bottom: 15px;
}
.property-specs span i {
    color: #0d3eaf;
}
 .property-buttons {
     display: flex;
     gap: 10px;
}
.property-buttons a {
    text-align: center;
    font-size: 15px;
    padding: 5px 10px;
    line-height: 28px;
}
 .btn-call {
     flex: 1;
     background: #2c1b87;
     color: white;
     padding: 10px;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     font-size: 13px;
}
 .btn-call:hover{
    background: #042061;
 }
 .btn-whatsapp {
     flex: 1;
     background: white;
     color: rgb(5, 196, 63);
     border: 1px solid rgb(5, 196, 63);
     padding: 10px;
     border-radius: 4px;
     cursor: pointer;
     font-size: 13px;
}
.btn-whatsapp:hover{
    background: rgb(5, 196, 63);
    color: #fff;
 }

/* Localities Section */
 .localities-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
}
 .locality-card {
     cursor: pointer;
     transition: transform 0.3s;
     position: relative;
}
 .locality-card:hover {
     transform: scale(1.1);
}
.porpImg {
    line-height: 0;
}
.porpImg img{
    border-radius: 10px;
}
.locality-name {
    border-radius: 0 0 10px 10px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 2%) 0%, rgb(0 0 0) 100%);
    padding: 30px 15px 15px 15px;
    right: 0;
    left: 0;
    color: #fff;
}
.locality-name h3 {
    font-size: 22px;
}
.locality-name span {
    display: block;
    font-size: 13px;
}
 
/* Info Section */
.info-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px 1px;
}

.info-search {
    width: 36%;
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
}
.info-search h3 {
    padding-bottom: 10px;
}
.info-search h3 i {
    color: #0d3eaf;
    font-size: 18px;
    padding-right: 5px;
}
.searchesKeyword a {
    display: inline-block;
    padding: 3px 10px;
    background: #fff;
    border-radius: 15px;
    border: #cdd3d9 solid 1px;
    margin-bottom: 5px;
    font-size: 13px;
    color: #333;
}
.searchesKeyword a:hover{
    color: #0d3eaf;
}
.info-content {
    width: 60%;
}
.info-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #0d3eaf;
}
 .info-content p {
     margin-bottom: 15px;
     color: #666;
     text-align: justify;
     font-size: 16px;
     line-height: 26px;
}
 .info-list {
     margin-top: 20px;
}
 .info-list li {
     margin-bottom: 12px;
     color: #666;
     list-style: none;
}
 .info-list li:before {
     content: "✓ ";
     color: #2563eb;
     font-weight: bold;
     margin-right: 8px;
}
/* CTA Section */
 .cta-section {
     background: #2463eb;
     color: white;
     text-align: center;
    padding: 100px 0;
}
 .cta-section h2 {
     font-size: 48px;
     margin-bottom: 10px;
}
 .cta-section p {
     font-size: 17px;
     margin-bottom: 40px;
}
 .cta-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
}
 .cta-buttons a {
     padding: 12px 30px;
     border: none;
     border-radius: 6px;
     font-size: 18px;
     cursor: pointer;
     display: flex;
     align-items: center;
     line-height: 30px;
     gap: 8px;
     display: inline-block;
}
 .cta-call {
     background: white;
     color: #000;
}
.cta-call:hover{
     background: #666;
     color: #fff;
}
 .cta-whatsapp {
     background: rgb(5, 196, 63);
     color: #fff;
}
.cta-whatsapp:hover{
     background: rgb(0 163 50);
}
/* Footer */
 footer {
     background: #0f172b;
     color: white;
     padding: 70px 0 20px 0;
}
 .footer-content {
     display: flex;
     justify-content: space-between;
     margin-bottom: 30px;
}
 .footer-column{
    width: 21%;
 }
  .footer-column:first-child{
    width: 30%;
    padding-right: 30px;
  }
 .footer-column h3 {
     font-size: 20px;
     margin-bottom: 10px;
}
 .footer-column p{
    font-size: 15px;
    padding-bottom: 10px;
 }
 .footer-column ul{
    list-style: disc;
    padding-left: 20px;
 }
 .footerCont p{
    position: relative;
    padding-left: 30px;
 }
  .footerCont p i{
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 20px;
  }
.footerLogo a{
    display: block;
     margin-bottom: 8px;
     width: 190px;
}
 .footer-column a {
     display: block;
     color: #fff;
     text-decoration: none;
     margin-bottom: 8px;
     font-size: 15px;
}
 .footer-column a:hover {
     color: #fe6802;
}
 .footer-bottom {
     border-top: 1px solid #444;
     padding-top: 20px;
     text-align: center;
     font-size: 12px;
     color: #cecece;
     display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom a{
    font-size: 12px;
     color: #cecece;
}
.footer-bottom a:hover{
    text-decoration: underline;
    color: #fff;
}
 .badge {
     background: #e5e7eb;
     color: #333;
     padding: 4px 10px;
     border-radius: 12px;
     font-size: 11px;
     display: inline-block;
     margin-right: 8px;
}

/*--------Inner Pages------------*/
.detail_bannerInner {
    padding: 80px 0;
    z-index: 9;
    position: relative;
}
.detail_bannerInner h1, .detail_bannerInner h1 .highlight {
    font-size: 50px;
}
.detail_bannerInner h2{
    font-size: 44px;
}
.detail_bannerInner h2 span{
    color: #ff6700;
}
.propertyDetTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
}
.detailSize {
    width: 70%;
}
.detailSize h2, .rentPrice h2{
    font-size: 32px;
}
.detailSize span, .rentPrice span {
    display: block;
    font-size: 16px;
}
.detailSize strong {
    display: inline-block;
    padding: 3px 10px;
    background: rgb(4, 153, 49);
    margin-top: 7px;
    color: #fff;
}
.Detail_section{
    padding: 60px 0 0 0;
}
.rentPrice {
    text-align: right;
    width: 28%;
}
.rentPrice a{
    display: inline-block;
    padding: 8px 15px;
    background: rgb(5 196 63);
    margin-top: 10px;
    color: #fff;
    border-radius: 6px;
}
.projOverview_Outer {
    padding-bottom: 60px;
    background: #f7f7f7;
}
.propdetail_Image_Slider {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 20px;
} 
.propimagesHIde{
    display: none;
}
.propDet_ImgBx_Left{
    width: 60%;
}
.propDet_ImgBx_Left img{
    height: 100%;
    border-radius: 5px;
}
.propDet_ImgBx_Right{
    width: 38%;
}
.probimgtopBx{
    margin-bottom: 10px;
    position: relative;
}
.probimgtopBx img{
    border-radius: 5px;
}
.probimgtopBx a{
    line-height: 0;
    display: block;
}
.moreNumb {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}
.moreNumb span {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: normal;
    color: #fff;
    font-size: 24px;
    left: 50%;
}
.zoomClass {
    display: block;
    height: 100%;
    position: relative;
}
.zoomClass:hover span.zoomBtn{
    opacity: 1;
}
span.zoomBtn {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    opacity: 0;
}
span.zoomBtn img{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: normal;
    color: #fff;
    left: 50%;
    height: auto;
}
.probimgtopBx:last-child{
    margin-bottom: 0;
}
.owlthumb{
    margin-top: 10px;
}

.projectOverview_OuterBx {
    background: #fff;
    box-shadow: #ccc 0 0 3px 0px;
    margin-bottom: 20px;
}
.overview_Navigation ul{
    display: flex;
}
.overview_Navigation li a{
    display: inline-block;
    padding: 10px 20px;
    line-height: 30px;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    border-right: #ccc solid 1px;
    border-bottom: transparent solid 2px;
}
.overview_Navigation li.active  a{
    color: #0d3eaf;
    border-bottom: #0d3eaf solid 2px;
}
.overview_Navigation li:last-child a{
    border-right: 0;
}
.overviewTab_OuterBx {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.overviewTabBx {
    width: 71%;
}
.ContactBrokerBx{
    width: 27%;
    background: #fff;
    padding: 15px;
    box-shadow: #e1e1e1 0 0 6px 0px;
    border-radius: 5px;
}
.awasomeBx {
    margin-bottom: 30px;
    background: #fffae8;
    border: #ffe0bd solid 1px;
    padding: 10px;
    font-size: 13px;
    color: #000;
}
.conbroker h4 {
    font-size: 20px;
    padding-bottom: 10px;
}
.contInpBx {
    padding-bottom: 20px;
}
input.contInp {
    width: 100%;
    height: 40px;
    border: #ccc solid 1px;
    border-radius: 3px;
    padding: 0 10px;
    font-size: 15px;
}
.contInpBx label {
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}
.contInpBx label input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 2px;
    width: 17px;
    height: 17px;
}
input.submitBtn {
    width: 100%;
    height: 45px;
    background: #27426f;
    border: 0;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
input.submitBtn:hover{
    background: #042061;
}

.overview_tabBx {
    background: #fff;
    box-shadow: #e1e1e1 0 0 6px 0px;
    border-radius: 5px;
    display: none;
}
.overHd {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px;
    text-transform: uppercase;
    color: #000;
    border-bottom: #ccc solid 1px;
}
.overviewList {
    padding: 20px;
}
.overviewList li {
    display: inline-block;
    width: 49%;
    padding-bottom: 15px;
}
.overviewList li span {
    display: block;
    color: #666;
    font-size: 15px;
}
.overviewList li strong {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
.aboutproperty {
    padding: 15px;
}
.aboutproperty h3 {
    font-size: 17px;
    padding-bottom: 5px;
}
.aboutproperty p {
    font-size: 15px;
    padding-bottom: 20px;
}
.aboutproperty h4 {
    font-size: 15px;
    color: #666;
    padding-bottom: 5px;
    font-weight: 600;
}
.propertyLocation {
    padding: 15px 15px 15px 80px;
    position: relative;
    
}
.propertyLocation i {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: absolute;
    left: 15px;
}
.propertyLocation span {
    display: block;
    font-size: 15px;
    color: #666;
}
.propertyLocation strong {
    font-size: 15px;
}
.heightlightList {
    padding: 15px;
}
.heightlightList li {
    display: inline-block;
    width: 49%;
    font-size: 15px;
    padding-bottom: 15px;
}
.heightlightList li img {
    width: 15px;
    margin-right: 5px;
}
.furnishings_List {
    padding: 15px;
}
.furnishings_List ul{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.furnishings_List li {
    background: #fff;
    border: #999 solid 1px;
    border-radius: 5px;
    padding: 10px;
    color: #000;
}
.furnishings_List li span{
    display: block;
    padding-top: 5px;
    font-size: 15px;
}
.mapBx {
    padding: 20px;
    height: 450px;
}
.mapBx iframe{
    border: #e5e5e5 solid 1px !important;
    border-radius: 5px;
}
.neighbourhoodList {
    padding: 20px;
}
.neighbourhoodList li{
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    text-align: center;
}
.neighbourhoodList li span{
    display: inline-block;
}
.neighbourhoodList li small{
    display: block;
}
.neighbourhoodList li span {
    display: inline-block;
    background: #fff;
    box-shadow: #ccc 0 0 5px 0px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
}
.neighbourhoodList li span img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
}
.relatedProp{
    grid-template-columns: repeat(4, 1fr);
}
.relatedProp .property-image {
    height: 200px;
}
.relatedProp .property-details {
    padding: 10px;
}
.relatedProp .property-title {
    font-size: 15px;
}
.hide{
    opacity: 0.5;
}