/* ========== ROOT ========== */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-pale: #F5E9C8;
    --cream: #FDFAF4;
    --green-deep: #01274c;
    --green-mid: #0b72db;
    --green-light: #0475e8;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #8A8A8A;
    --border: #E5DCC8;
    --shadow-gold: rgba(201,168,76,0.18);
    --white: #fff;

    --primary-color: #083E73; /*— header, navigation, main CTA, pricing buttons */
    --highlights-dark: #1d8f0c; /*— active states, Live Chat, highlights */
    --highlights: #56B947; /*— active states, Live Chat, highlights */
    --card-background: #F5FAFF; /*— sections/cards background */
    --badges-borders: #C8A453; /*— only badges, subtle borders, dividers */
    --headings: #0B2452; /*— headings */
    --cards-forms: #FFFFFF; /*— cards/forms */
    --gradient-45: linear-gradient(45deg, var(--highlights), var(--highlights-dark));
    --gradient-90: linear-gradient(90deg, var(--highlights), var(--highlights-dark));
    --gradient-135: linear-gradient(135deg, var(--highlights), var(--highlights-dark));
}

@import url('https://fonts.cdnfonts.com/css/optima');
        
@media screen and (max-width:567px){
    .white-content{
        padding: 15px 12px!important;
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}


@media screen and (min-width: 567px){
    .mobile-close{
        display: none;
    }
}



.hero{
    padding:0;
    margin:0;
    height:100vh;
    /*background-image:url('assets/images/homepage-image/homepage-banner.webp');*/
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

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

.hero{
    /*background-image:url('assets/images/homepage-image/homepage-banner.webp');*/
    height:70vh;
}

}


.form-loader-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999999;
}

.form-loader-overlay.active{
  display:flex;
}

.loader-box{
  background:#fff;
  padding:30px 40px;
  border-radius:10px;
  text-align:center;
}

.spinner{
  width:40px;
  height:40px;
  border:4px solid #ddd;
  border-top:4px solid #caa43b;
  border-radius:50%;
  animation:spin 0.8s linear infinite;
  margin:auto;
  margin-bottom:10px;
}

@keyframes spin{
  100%{transform:rotate(360deg);}
}



/* ===== INTL TEL INPUT FIX ===== */
.iti {
    width: 100% !important;
    display: block !important;
}

.iti input {
    width: 100% !important;
    box-sizing: border-box !important;
}

.iti--allow-dropdown {
    width: 100% !important;
}

.iti__flag-container {
    max-width: 80px !important;
    z-index: 10 !important;
}

.iti__country-list {
    z-index: 999999 !important;
}

/* ===== FORM CONTAINER FIX ===== */
.secure-form,
.popup-form,
.fwf-form-white {
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* ===== INPUT FIX ===== */
.form-control {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ===== MOBILE SPECIFIC ===== */
@media (max-width: 768px) {
    .iti {
        width: 100% !important;
    }

    input[name="phone"] {
        width: 100% !important;
    }

    .iti__flag-container {
        max-width: 70px !important;
    }
    .blog-hero h1 {
        font-size: 30px;
    }
    .blog-content h2 {
        font-size: 25px;
        margin: 20px 0 14px;
    }
}


.ggnblog {
    padding: 0px;
}
.table {
    display: block;
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--headings);
    border-radius: 10px !important;
    margin: 0 0 15px 0;
}
.table .compare-table {
    width: 700px;
    min-width: 700px;
    max-width: none;
    border-collapse: collapse;
}
#mousepointer span {
    color: #fff;
    line-height: 1;
}
/* Firefox */
.table {
    scrollbar-width: thin;
    scrollbar-color: #56b947 #eaf4ee;
}

/* Chrome, Edge, Safari */
.table::-webkit-scrollbar {
    height: 8px; /* Horizontal scrollbar height */
}

.table::-webkit-scrollbar-track {
    background: #eaf4ee;
    border-radius: 20px;
}

.table::-webkit-scrollbar-thumb {
    background: #083e73; /* Scroll handle */
    border-radius: 20px;
    border: 2px solid #eaf4ee;
}

.table::-webkit-scrollbar-thumb:hover {
    background: #56b947;
}









/* about us page  */

  .vm-section{
padding:120px 0;
background:#f9f9f9;
}

.vm-header{
text-align:center;
margin-bottom:70px;
}

.vm-header h2{
font-size:42px;
font-weight:600;
color:var(--headings);
margin-bottom:15px;
}

.vm-header p{
color:#666;
max-width:650px;
margin:auto;
line-height:1.7;
}

.vm-wrapper{
display:flex;
align-items:stretch;
gap:40px;
}

.vm-box{
flex:1;
background:#fff;
padding:45px;
border-radius:14px;
box-shadow:0 15px 45px rgba(0,0,0,0.08);
transition:.4s;
}

.vm-box:hover{
transform:translateY(-8px);
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.vm-box h3{
font-size:26px;
margin-bottom:20px;
color:var(--headings);
}

.vm-box p{
color:#666;
line-height:1.8;
margin-bottom:15px;
}

.vm-divider{
width:3px;
background:var(--highlights);
border-radius:10px;
}

/* responsive */

@media(max-width:992px){

.vm-wrapper{
flex-direction:column;
}

.vm-divider{
display:none;
}

}





/* Blogs Archive page css */

/* ===== INTL TEL INPUT FIX ===== */
.iti {
    width: 100% !important;
    display: block !important;
}

.iti input {
    width: 100% !important;
    box-sizing: border-box !important;
}

.iti--allow-dropdown {
    width: 100% !important;
}

.iti__flag-container {
    max-width: 80px !important;
    z-index: 10 !important;
}

.iti__country-list {
    z-index: 999999 !important;
}

/* ===== FORM CONTAINER FIX ===== */
.secure-form,
.popup-form,
.fwf-form-white {
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* ===== INPUT FIX ===== */
.form-control {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ===== MOBILE SPECIFIC ===== */
@media (max-width: 768px) {
    .iti {
        width: 100% !important;
    }

    input[name="phone"] {
        width: 100% !important;
    }

    .iti__flag-container {
        max-width: 70px !important;
    }
}

.wc-view, a{
 font-weight: bold;   
}




.footer-col ul {
    max-height: 210px;
    overflow-y: auto;
    padding-right: 8px;
    list-style: none;
    font-size: 13px;
}

/* Smooth Scroll Look */
.footer-col ul::-webkit-scrollbar {
    width: 6px;
}

.footer-col ul::-webkit-scrollbar-thumb {
    background: #c9a24d;
    border-radius: 10px;
}

.footer-col ul::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}
.ap-mini-banner h2,
.ap-mini-banner p{
color:white;
}
.text-center{
    text-align: center;
}

.blog-section{
    padding:80px 0;
    background:#f7f7f7;
}

.blog-heading{
    text-align:center;
    font-size:36px;
    font-weight:700;
    margin-bottom:10px;
    color: #000;
}

.blog-subheading{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:50px;
    color:#666;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-box{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:.3s;
    height:100%;
    display:flex;
    flex-direction:column;
}

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

.blog-image{
position:relative;
}

.blog-image img{
width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: top;

}

.blog-category{
position:absolute;
top:15px;
font-family: 'Optima';
left:15px;
background:#c59d5f;
color:#fff;
font-size:12px;
padding:6px 12px;
border-radius:30px;
font-weight:600;
}

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

.blog-meta{
display:flex;
gap:15px;
font-size:13px;
color:#888;
margin-bottom:12px;
flex-wrap:wrap;
}

.blog-meta i{
margin-right:5px;
color:#c59d5f;
}

.blog-content h3{
font-size:17px;
margin-bottom:10px;
font-weight:600;
}

.blog-content h3 a{
text-decoration:none;
font-family: 'optima';
color:#111;
}

.blog-content p{
font-size:14px;
color:#555;
flex-grow:1;
font-family: 'Lato';
}

.read-btn{
display:inline-block;
width:100px;
margin-top:15px;
font-weight:600;
font-size:14px;
background:#000;
color:#fff;
text-decoration:none;
padding:10px;
border-radius:100px;
font-family:'optima';
text-align:center;
transition:all .4s ease;
overflow:hidden;
}

.read-btn:hover{
width:100%;
}
.read-btn:hover{
color:#c59d5f;
}

@media(max-width:992px){
.blog-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:576px){
.blog-grid{
grid-template-columns:1fr;
}
}

.more-blogs, .more-properties{
display:none;
}

.blog-btn, .property-btn{
background:var(--highlights);
color:#fff;
border:none;
padding:14px 35px;
border-radius:6px;
font-weight:600;
margin-top:40px;
cursor:pointer;
transition:.3s;
}

.blog-btn:hover, .property-btn:hover{
background:var(--highlights-dark);
}


.blog-pagination a {
    border: 1px solid var(--rh-global-color-primary);
    background: #ffff;
    padding: 8px;
    margin: 5px;
    border-radius: 5px;
}
.blog-pagination a:hover {
    box-shadow: 1px 1px 1px var(--rh-global-color-primary); 
}
.blog-content strong {
    color: #000 !important;
}


circle {
    stroke: var(--gold-light) !important;
    fill: var(--headings);
}
#scrollTopBtn i.fas.fa-arrow-up {
    color: #fff !important;
    opacity: 1;
    z-index: 999;
    position: relative;
}



@media screen and (max-width:567px){
    #related-projects{
        margin-top:-200px;
    }
    .navbar{
        padding:5px 0px!important;
    }
}
/* ===== FIX MOBILE PROPERTY NAV OVERLAP ===== */
@media (max-width: 991px){

  .pd-left{
    overflow: visible; /* important */
  }

  .property-nav{
 
   
    z-index: 1 !important;
  }

}
 .prop-logo {
        width: 150px!important;
          filter: invert(1) brightness(14.5);
    }


.logo-wrap{
  margin-bottom: 3px;
}

@media (max-width: 468px) {
    .scroll-top-wrapper {
        bottom: 175px;
        right: 20px;
    }
}


.scroll-top-wrapper {
    position: fixed;
    right: 20px;
    bottom: 170px;
    
}







@media screen and (max-width:456px){
.intro-grid{
    grid-template-columns: 1fr!important;
}
.counter-grid{
    grid-template-columns:repeat(2, 1fr)!important;
}

.counter-box{
 text-align: center;

  border-left: none!important;
 border-right: none!important;
}

}
.counter-section{
background:#111;
padding:80px 0;
}

.counter-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
}

.counter-box h2{
color:#d4af37;
font-size:42px;
margin-bottom:10px;
}

.counter-box p{
color:#aaa;
}
.counter-box{
 text-align: center;
 border-left: 1px solid white;
 border-right: 1px solid white;
}

.team-section{
padding:100px 0;
background:#0b0b0b;
}

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-header h2{
font-size:32px;
color:white;
margin-bottom:10px;
}

.section-header p{
color:#aaa;
}

.team-section{
padding:100px 0;
background:#ffffff;
}

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-header h2{
font-size:36px;
color:var(--headings);
margin-bottom:10px;
font-weight:600;
}

.section-header p{
color:#666;
font-size:16px;
}

.team-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

.team-card{
background:#ffffff;
border-radius:12px;
padding:30px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,0.08);
transition:all .3s ease;
border-bottom:3px solid transparent;
}

.team-card:hover{
transform:translateY(-10px);
border-bottom:3px solid #d4af37;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.team-image{
margin-bottom:20px;
justify-content: center;
display: flex;
}

.team-image img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
border:4px solid #f5f5f5;
}

.team-info h3{
margin-bottom:5px;
color:#111;
font-size:22px;
}

.team-info span{
color:#d4af37;
font-size:15px;
display:block;
margin-bottom:12px;
font-weight:500;
}

.team-info p{
color:#666;
font-size:15px;
line-height:1.6;
}


/* Mobile Responsive */

@media(max-width:992px){

.team-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.team-grid{
grid-template-columns:1fr;
}

}
.intro-text, p{
 font-size:15px;
 color: #000;
}






.wc-view, a{
 font-weight: bold;   
}

/*.visually-hidden {
    display: contents;
    color: #fff;
}*/

.ap-mini-banner-content h2, .ap-mini-banner-content p {
    color: #fff;
}




.footer-col ul {
    max-height: 210px;
    overflow-y: auto;
    padding-right: 8px;
    list-style: none;
    font-size: 13px;
}

/* Smooth Scroll Look */
.footer-col ul::-webkit-scrollbar {
    width: 6px;
}

.footer-col ul::-webkit-scrollbar-thumb {
    background: #c9a24d;
    border-radius: 10px;
}

.footer-col ul::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

#alocation{
    display: contents;
}


@media (max-width: 768px) {
    .scroll-top-wrapper {
        bottom: 162px;
        right: 20px;
    }
}


.scroll-top-wrapper {
    position: fixed;
    right: 20px;
    bottom: 170px;
    
}

.usp-item img{
    width: 45px;
    height: 45px;
}




















/* ===== BLOG INSIGHTS WIDGET ===== */

.blog-insights{
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

.insights-title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
}

.insights-title::after{
  content: "";
  width: 38px;
  height: 3px;
  background: #d4af37;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 3px;
}

/* ===== FEATURED ===== */

.featured-insight{
  display: block;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform .35s ease;
}

.featured-insight:hover{
  transform: translateY(-3px);
}

.featured-thumb{
  position: relative;
  height: 240px!important;
  overflow: hidden;
}

.featured-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,.55),transparent);
}

.featured-tag{
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d4af37;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.featured-content{
  padding: 14px;
}

.featured-category{
  font-size: 12px;
  color: #d4af37;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-content h4{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 6px 0 8px;
}

.featured-content p{
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

.featured-date{
  font-size: 12px;
  color: #999;
}

/* ===== INSIGHT CARDS ===== */


/* MOBILE */
@media(max-width:768px){
  .featured-thumb{
    height: 140px;
  }
}




/* MAIN CARD */
.yt-insights{
  max-width: 420px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.yt-insights:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(0,0,0,.12);
}

/* TITLE */
.yt-title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}

.yt-title::after{
  content: "";
  width: 38px;
  height: 3px;
  background: #d4af37;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 3px;
}

/* VIDEO WRAP */
.yt-video-wrap{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  cursor: pointer;
}

.yt-video-wrap iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* PLAY OVERLAY */
.yt-play-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.yt-play-overlay span{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
  position: relative;
  transition: transform .35s ease, background .35s ease;
}

.yt-play-overlay span::after{
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
}

.yt-video-wrap:hover .yt-play-overlay span{
  transform: scale(1.08);
  background: rgba(212,175,55,0.9);
}

/* DURATION */
.yt-duration{
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 6px;
  border-radius: 4px;
}

/* CHANNEL ROW */
.yt-channel{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.yt-channel-info h4{
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.yt-channel-info p{
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.yt-badge{
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #ff0000;
  padding: 3px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
}

/* SUBSCRIBE */
.yt-subscribe{
  background: #ff0000;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

.yt-subscribe:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,0,0,.35);
}

.yt-subscribe::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.35),
    transparent 70%
  );
  transform: translateX(-100%);
}

.yt-subscribe:hover::after{
  animation: shine .8s ease;
}

@keyframes shine{
  to{ transform: translateX(100%); }
}

/* MOBILE */
@media(max-width:768px){
  .yt-insights{
    max-width: 100%;
  }
}


/* ===== INSTAGRAM PREMIUM WIDGET ===== */

.insta-insights.premium{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.95),
    rgba(255,255,255,1)
  );
  border-radius:18px;
  padding:18px;
  box-shadow:0 18px 50px rgba(0,0,0,.10);
  margin-top:28px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.insta-insights.premium:hover{
  transform: translateY(-4px);
  box-shadow:0 24px 65px rgba(0,0,0,.14);
}

/* HEADER */
.insta-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}

.insta-title{
  font-size:19px;
  font-weight:700;
  position:relative;
}

.insta-title::after{
  content:"";
  width:34px;
  height:3px;
  background:#d4af37;
  position:absolute;
  left:0;
  bottom:-6px;
  border-radius:3px;
}

.insta-profile{
  font-size:12px;
  font-weight:600;
  color:#fff;
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  padding:6px 10px;
  border-radius:20px;
  text-decoration:none;
  transition: transform .25s ease;
}

.insta-profile:hover{
  transform: scale(1.05);
}

/* EMBED WRAPPER */
.insta-embed-wrap{
  margin-top:14px;
  border-radius:14px;
  overflow:hidden;
}

/* Clean up Instagram iframe */
.insta-embed-wrap iframe{
  max-width:100% !important;
}

/* FOOTER CTA */
.insta-footer{
  margin-top:14px;
  text-align:center;
}

.insta-cta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:700;
  color:#000;
  text-decoration:none;
  padding:8px 14px;
  border-radius:22px;
  background:rgba(212,175,55,0.15);
  transition: all .3s ease;
}

.insta-cta span{
  transition: transform .3s ease;
}

.insta-cta:hover{
  background:#d4af37;
  color:#000;
}

.insta-cta:hover span{
  transform: translateX(4px);
}

/* MOBILE POLISH */
@media(max-width:768px){
  .insta-insights.premium{
    padding:16px;
  }
}
