/* Base transparent header */
html, body{
    width: 100%;
    overflow-x: hidden;
}
body {
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    color: rgba(29, 29, 31, 1);
}
a {
    background-color: transparent;
    color: #0A0C27;
    text-decoration: none;
}
/* Hide Google Translate loader, banner, and icon */
.goog-te-spinner-pos,
.goog-te-spinner,
.goog-te-spinner-animation,
.goog-te-spinner-animation div,
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-te-balloon-frame,
.skiptranslate,
.goog-te-menu-frame, /* mobile menu iframe */
.goog-te-menu-frame.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
body {
  top: 0px !important; /* prevent white gap when bar is hidden */
}
#goog-gt-tt + div {
    display: none !important;
}
body.home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 99998;
    transition: all 0.3s ease;
}
/* White background on all other pages */
body:not(.home) .site-header {
    position: relative;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    width: 100%;
    z-index: 99998;
    transition: all 0.3s ease;
}

/* Adjust header when admin bar is visible */
body.home.admin-bar .site-header.sticky-header {
    top: 32px; 
}
body:not(.home).admin-bar .site-header.sticky-header {
    top: 32px; 
}

@media screen and (min-width: 768px) and (max-width: 600px) {
    body.home.admin-bar .site-header {
        top: 46px; /* WP admin bar height on mobile */
    }
    body:not(.home).admin-bar .site-header.sticky-header {
        top: 46px; 
    }
}
@media screen and (max-width: 600px) {
    body.home.admin-bar .site-header {
        top: 46px; /* WP admin bar height on mobile */
    }
    body.home.admin-bar .site-header.sticky-header{
        top: 0px;
    }
    body:not(.home).admin-bar .site-header.sticky-header {
        top: 0px; 
    }
}

/* Header inner content spacing */
body .site-header .header-inner {
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Transparent header text color */
.site-header .site-navigation a,
.site-header .site-title a,
.site-header .site-description {
    color: #fff; /* white text over transparent */
    transition: color 0.3s ease;
}

/* On scroll → white background */
body .site-header.sticky-header {
    position: fixed !important;
    background: #fff;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(0);
    animation: slideDown 0.3s ease forwards;
}
@keyframes slideDown {
    from {
        transform: translateY(-10px);
    }
    to {
        transform: translateY(0);
    }
}

.site-header .language-switcher select{
    border: none;
    padding: 8px 5px;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    background-color: transparent;
    color: #fff;
}
.site-header.sticky-header .language-switcher select{
    color: #000;
}
.site-header .language-switcher select option{
   color: #000;
}
body:not(.home) .site-header .language-switcher select{
    color: #000;
}
body:not(.home) .site-header .language-switcher select option{
    background-color: #fff;
}
/* Change nav links when sticky */
.site-header.sticky-header .site-navigation .menu a,
.site-header.sticky-header .site-title a {
    color: #000; /* dark text */
}
.site-header.sticky-header .site-branding .site-logo svg {
    fill: #000;
}

.site-navigation ul.menu li a{
    padding: 8px 15px;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    white-space: nowrap;

}
.site-navigation ul.menu li a .submenu-icon{
    padding: 0px 5.5px;
}
.site-navigation ul.menu li a .submenu-icon svg{
    width: 13px;
    height: auto;
}
body.home .site-navigation ul.menu li a{
    color: #FFFFFF;
}
body:not(.home) .site-navigation ul.menu li a{
    color: #000000;
}
body:not(.home) .site-header .site-branding .site-logo svg{
    fill: #000;
}
.site-navigation ul.menu ul.sub-menu{
    padding: 8px;
    min-width: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    transform: translateY(15px);
    transition: all 0.3s ease;
    display: block !important;   /* force enable for animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    transition-delay: 0.10s;
    pointer-events: none;
}
.site-navigation ul.menu li:hover > ul.sub-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}
.site-navigation ul.menu ul.sub-menu li.menu-item-has-children{
    padding-inline-end: 0px;
}
.site-navigation ul.menu ul.sub-menu li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-navigation ul.menu ul.sub-menu li a .submenu-icon{
    transform: rotate(-90deg);
}
body.home .site-navigation ul.sub-menu li a{
    color: #151515;
    font-size: 16px;
    white-space: nowrap;
    width: 100%;
}
body:not(.home) .site-navigation ul.sub-menu li a{
    color: #151515;
    font-size: 16px;
    white-space: nowrap;
    width: 100%;
}
.site-navigation ul.menu li:hover > a{
    color: #0A0C27;
}
.site-header.sticky-header .site-navigation ul.menu li:hover > a{
    color: #000000;
}
.site-navigation ul.sub-menu li:hover > a{
    background-color: #F6F6F6;
}
.site-navigation ul.menu li.menu-item-has-children{
    padding-inline-end: 15px;
}
.site-header .site-navigation ul.menu li.menu-item-has-children:after{
    color: #fff;
    font-size: 22px;
    display: none !important;
}
.site-header.sticky-header .site-navigation ul.menu li.menu-item-has-children:after,
body:not(.home) .site-header .site-navigation ul.menu li.menu-item-has-children:after{
    color: #000000;
}
.site-navigation ul.menu li.menu-item-has-children > a{
    padding-right: 0px;
}
.site-navigation-dropdown ul.menu li a{
    font-family: "Manrope", sans-serif;
    color: #151515;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.site-navigation-dropdown ul.menu li.current-menu-item a{
    background: #151515;
    color: #fff;
}
.site-navigation-dropdown ul.sub-menu li a{
    background: #f5f5f5;
    padding: 10px 15px !important;
    font-size: 16px;
}   
.header-buttons .btn {
    padding: 12px 25px;
    border-radius: 0px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    letter-spacing: 0.38px;
    gap: 8px;
}
.header-buttons .btn svg{
    vertical-align: middle;
}
.site-navigation-toggle-holder{
    padding: 0px;
    gap: 10px;
}
.site-navigation-toggle-holder .site-navigation-toggle{
    padding: 0px;
    background-color: rgba(255, 255, 255, .05);
    color: #fff;
}
.site-header.sticky-header .site-navigation-toggle-holder .site-navigation-toggle,
body:not(.home) .site-header .site-navigation-toggle-holder .site-navigation-toggle{
    background-color: rgba(0, 0, 0, .05);
    color: #494c4f;
}
/* Primary Button */
.header-buttons .btn-primary {
    background: #0A0C27; /* adjust to your brand color */
    color: #fff;
}
.header-buttons .btn-primary:hover {
    background: #352BC2;
}

/* Primary Button */
.header-buttons .btn-whatsapp {
    background: #009C8A; /* adjust to your brand color */
    color: #fff;
    letter-spacing: 0.566px;
}
.header-buttons .btn-whatsapp:hover {
    background: #352BC2;
}
/* Outline Button */
.header-buttons .btn-outline {
    border: 2px solid #25D366; /* WhatsApp green */
    color: #25D366;
}
.header-buttons .btn-outline:hover {
    background: #25D366;
    color: #fff;
}

/* Optional WhatsApp icon (using Font Awesome or inline SVG) */
.header-buttons .whatsapp-icon::before {
    content: "\f232"; /* Font Awesome WhatsApp unicode */
    font-family: "Font Awesome 5 Brands";
    margin-right: 8px;
}

.site-navigation-toggle-holder .site-navigation-toggle svg.bars {
  width: 50px;
  cursor: pointer;
}
.site-navigation-toggle-holder .site-navigation-toggle svg.bars .line {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: square;
  transition: stroke-dasharray 400ms,  stroke-dashoffset 400ms;
}
.site-navigation-toggle-holder .site-navigation-toggle svg.bars .line.top {
  stroke-dasharray: 40 172;
}
.site-navigation-toggle-holder .site-navigation-toggle svg.bars .line.middle {
  stroke-dasharray: 40 111;
}
.site-navigation-toggle-holder .site-navigation-toggle svg.bars .line.bottom {
  stroke-dasharray: 40 172;
}
.site-navigation-toggle-holder.elementor-active .site-navigation-toggle svg.bars .top {
  stroke-dashoffset: -132px;
}
.site-navigation-toggle-holder.elementor-active .site-navigation-toggle svg.bars .middle {
  stroke-dashoffset: -71px;
}
.site-navigation-toggle-holder.elementor-active .site-navigation-toggle svg.bars .bottom {
  stroke-dashoffset: -132px;
}
div#n2-ss-1 .n2-ss-button-container.n2-ss-nowrap .fa-angle-right{
    vertical-align: middle;
}
.no-white-space{
    white-space: nowrap;
}
.b-plus-suffix .elementor-counter-number-suffix:before{
    content: "B";
    display: inline;
    color: #fff;
}
.elementor-counter .elementor-counter-number-suffix{
    color: #352BC2;
}
/*Footer CSS */
.flex{
    display: flex;
} 
.justify-center{
    justify-content: center;
}
.items-center{
    align-items: center;
}
.justify-between{
    justify-content: space-between;
}
.flex-column{
    flex-direction: column;
}
.site-footer{
    padding: 0px;
    margin: 0px;
}
.elementor-element.elementor-element-f0css16 {
    --display: flex;
    --flex-direction: column;
    --container-widget-width: 100%;
    --container-widget-height: initial;
    --container-widget-flex-grow: 0;
    --container-widget-align-self: initial;
    --flex-wrap-mobile: wrap;
    --padding-top: 50px;
    --padding-bottom: 0px;
    --padding-left: 20px;
    --padding-right: 20px;
}
.site-footer > .elementor-element > .e-con-inner{
    padding-block-start: 100px;
}
.footer-subscribe {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 0 0 20px 0;
}
.footer-subscribe-left,
.footer-subscribe-right {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}
.footer-subscribe-left h2 {
  color: #151515;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -2px;
  /* Mobile first (default) */
  font-size: 32px;
}

.footer-subscribe-left p {
    font-family: "Manrope",sans-serif;
    margin-top: 15px;
    font-size: 18px;
    color: #2F2F2F;
}

.subscribe-form {
    display: flex;
    max-width: 100%;
    width: 100%;
    align-items: center;
    gap: 5px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px;
    border: none;
    background: #f2f2f2;
    font-size: 16px;
    outline: none !important;
    border-radius: 0px;
}

.subscribe-form button {
    background: #3626c2;
    color: #fff;
    padding: 15px 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 0px;
}
.subscribe-form button svg{
    vertical-align: middle;
}
.subscribe-form button:hover {
    background-color: #0A0C27;
}

.footer-widgets {
  display: grid;
  grid-template-columns: 1fr; /* 📱 Mobile: 1 column */
  gap: 20px;
  padding: 40px 0;
  border-top: 1px solid #EEEEEE;
}

.footer-widgets .two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 📱 Mobile: single column */
  gap: 15px;
}
.footer-col h4 {
    font-family: "Sora", sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 25px;
    color: #000000;
}
.footer-widgets p{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.footer-widgets .contact a{
    color: #000000;
}
.footer-widgets .contact a:hover {
    color: #3626c2;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    color: #000000;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3626c2;
}

.social-icons a {
    margin-right: 15px;
    font-size: 26px;
    color: #000000;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3626c2;
}

.footer-bottom {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  text-align: center;
}
.footer-bottom .copyright p{
    margin: 0px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.footer-bottom a{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    color: #000000;
    transition: color 0.3s;
}
.footer-bottom a:hover {
    color: #3626c2;
}

/*property page*/
.site-main .site-main-inner,
.mastermind-properties-header .header-inner,
.site-main .container-inner{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-self: auto;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%;
    gap: 20px;
    height: 100%;
    margin: 0 auto;
    max-width: 1502px;
    padding-inline-end: 10px;
    padding-inline-start: 10px;
}
.single-property .site-main .site-main-inner{
    gap: 0px;
}
/* blog page css  */
.site-main .page-boxed,
section.comments-area .comment-respond{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-self: auto;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%;
    gap: 20px;
    height: 100%;
    margin: 0 auto;
    max-width: 995px;
    padding-inline-end: 10px;
    padding-inline-start: 10px;
}
.site-main .page-boxed .wp-block-heading,
section.comments-area .comment-respond .comment-reply-title{
    font-family: "Sora", sans-serif;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -3%;
}
section.comments-area .comment-respond{
    margin-top: 30px;
}
.blog-breadcrumb > *{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 14%;
    text-transform: uppercase;
    color: #000000;
}
.blog-breadcrumb span{
    color: rgba(150, 150, 150, 1);
}
.page-header h1.elementor-heading-title{
    font-family: "Sora", sans-serif;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: rgba(21, 21, 21, 1);
    margin-top: 20px;
    margin-bottom: 20px;
}
.page-header span.post-date{
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 14%;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 1);
}
.featured-inside-content {
    margin: 20px 0;
    text-align: center;
}
.featured-inside-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
}

input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea{
    border-radius: 0px;
    outline: none;
}

[type=button], [type=submit], button {
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 0px;
    color: #000000;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    padding: .5rem 1rem;
    text-align: center;
    transition: all .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
}
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover{
    background-color: #000000;
    color: #fff;
    text-decoration: none;
}
.comment-form-cookies-consent{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
/* Hero Post */
.hero-post {
  display: flex;
  flex-direction: column; /* mobile: stacked */
  gap: 50px;
  margin-bottom: 80px;
}

.hero-post .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  object-fit: cover;
}

.hero-post .hero-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  padding: 15px;
}
.hero-post .hero-content .hero-content-inner{
    max-width: 485px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-post .hero-content h2 {
    font-family: "Sora", sans-serif;
    font-weight: 300;
    font-size: 34px;
    letter-spacing: -0.03px;
    margin: 0;
    text-transform: uppercase;
}

.hero-post .hero-content p {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: rgba(71, 71, 71, 1);
    line-height: 1.4em;
}
.text-ellipsis-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-archive-container {
  width: 100%;
  max-width: 1502px;
  margin: 0 auto; /* center container */
  padding: 40px 15px; /* mobile spacing */
  box-sizing: border-box;
}

/* Grid inside the blog archive */
.blog-archive-container .post-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile: single column */
  gap: 30px;
}
.blog-archive-container .post-grid img{
    width: 100%;
}
.blog-archive-container .archive-title-row .archive-upper-title{
    font-family: "Manrope", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #151515;
}
.blog-archive-container .archive-title-row .archive-title{
    font-family: "Sora", Sans-serif;
    font-weight: 300;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: -0.03px;
    color: #151515;
    margin: 0px;
    margin-bottom: 30px;
}


.blog-archive-container .post-grid .grid-item{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.blog-archive-container .post-grid .grid-item h3{
    font-family: "Sora", sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.4em;
    margin: 0;
    text-transform: uppercase;
}
.blog-archive-container .post-grid .grid-item p{
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0px;
    line-height: 1.4em;
}
.blog-archive-container .hero-post .hero-content a.cta-read-more,
.blog-archive-container .post-grid .grid-item a.cta-read-more {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    color: #000000;
    text-decoration: none;
    line-height: 1.4em;
}

.blog-archive-container .hero-post .hero-content a.cta-read-more:hover,
.blog-archive-container .post-grid .grid-item a.cta-read-more:hover {
  text-decoration: underline;
}
.p-relative{
    position: relative;
}
/* Pagination Wrapper */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
  flex-wrap: wrap;
}

/* Page Numbers */
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #ddd;
  border-radius: 0px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover State */
.pagination .page-numbers:hover {
  background-color: #f5f5f5;
  border-color: #bbb;
  color: #000;
}

/* Current Page */
.pagination .page-numbers.current {
  background-color: #000;
  border-color: #000;
  color: #fff;
  font-weight: 600;
}

/* Prev/Next Links */
.pagination .prev,
.pagination .next {
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 16px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.form-row.two-col .form-group {
  flex: 1 1 50%;
  padding-right: 10px;
}

.form-row.two-col .form-group:last-child {
  padding-right: 0; /* remove extra spacing */
}

.form-group {
  width: 100%;
}
.form-group > p{
    display: block;
    margin-bottom: 0px;
}
.form-group label {
    display: block;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 0px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(146, 146, 146, 1);
  border-radius: 0px;
  font-size: 16px;
  background: transparent;
}

.wpcf7-submit {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    background: #000;
    font-size: 18px;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.wpcf7-submit:hover {
  background: #352BC2;
}

/* Hide arrow on desktop */
.site-navigation-dropdown .menu-item-has-children > a::after {
  display: none;
}
.featured-properties-slider{
    overflow: unset;
}
.featured-properties-slider .property-slide .property-thumb img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 361px;
}
.featured-properties-slider .property-slide .property-slide-info{
    position: relative;
    margin-top: 20px;
    width: 100%;
}
.featured-properties-slider .property-slide .property-slide-info .property-title{
    padding: 0px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
    outline: none;
}
.featured-properties-slider .property-slide .property-slide-info .price{
    display: inline-flex;
    font-weight: 400;
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    color: #fff;
}
.featured-properties-slider .property-slide .property-slide-info .builtup_area:before {
    content: "";
    width: 2px;
    height: 14px;
    background: #fff;
    display: inline-flex;
    margin: 0px 5px 0px 10px;
}
.featured-properties-slider .property-slide .property-slide-info .builtup_area{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}
.featured-properties-slider .property-slide .property-slide-info .builtup_area svg{
    stroke: #fff;
    width: 20px;
    height: auto;
}
.featured-properties-slider .swiper-button-next, 
.featured-properties-slider .swiper-button-prev{
  color: rgba(96, 103, 194, 1);
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  outline: none;
  transition: all 0.2s linear;
}
.featured-properties-slider .swiper-button-next:hover, 
.featured-properties-slider .swiper-button-prev:hover{
  background: rgba(255, 255, 255, 1);
}
.featured-properties-slider .swiper-button-next:after, 
.featured-properties-slider .swiper-button-prev:after{
  font-size: 20px;
  font-weight: 900;
}
.single-property-actions{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.property-share {
  position: relative;
}
.property-share > button{
    width: 100%;
}
.property-share-icons {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.property-share-icons .share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4f4f4;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.property-share-icons .share-icon:hover {
  background: #000;
  color: #fff;
}

.button{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    cursor: pointer;
    overflow: hidden;
    color: #000000;
    background: #ffffff;
    transition: color 0.3s ease;
    padding-top: 16px;
    padding-right: 26px;
    padding-bottom: 16px;
    padding-left: 32px;
    border-width: 1px;
    border-style: solid;
    border-color: #000000;
    line-height: 24px;
}
.button-black-outline .b-icon{
    vertical-align: middle;
    width: 24px;
    height: 24px;
}
.button-black{
    background-color: #000000;
    color: #fff;
    border-color: #000000;
}

.button-black:hover{
    background-color: rgb(53, 43, 194);
    color: #ffffff;
    border-color: rgb(53, 43, 194);
}
.button-black-outline:hover{
    background-color: #000000;
    color: #fff;
    border-color: #000000;
}
.button-black-outline:hover svg,
.button-black-outline:focus svg{
    fill: #fff;
}
.left-over-dark .featured-properties-slider:before{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 50%;
    background: #171717;
    transform: translateX(-100%);
    z-index: 3;
}
.subscriber-title{
    font-family: "Sora", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4em;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: rgba(47, 47, 47, 1);
}
.subscribe-form .wpcf7-form-control-wrap{
    flex: 1;
}
.gallery-archive .archive-title{
    font-family: "Sora", Sans-serif;
    font-weight: 300;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: -0.03px;
    color: #151515;
    margin: 0px;
    margin-bottom: 30px;
}
/* Tabs */
.gallery-archive .gallery-tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
    display: flex;
}
.gallery-archive .gallery-tabs li {
    cursor: pointer;
    padding: 20px 50px;
    border-bottom: 2px solid rgba(228, 228, 228, 1);
    color: rgba(124, 124, 124, 1);
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1em;
    letter-spacing: 0.02px;
    text-transform: capitalize;

}
.gallery-archive .gallery-tabs li.active {
    color: rgba(53, 43, 194, 1);
    border-color: rgba(53, 43, 194, 1);
}

/* Tab Content */
.gallery-archive .tab-content { display: none; }
.gallery-archive .tab-content.active { display: block; }

/* Grid */
/* Mobile (default) */
.gallery-archive .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 55px 20px;
}

.gallery-archive .gallery-grid .gallery-item > a{
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.gallery-archive .gallery-grid .gallery-item img,
.gallery-archive .gallery-grid .gallery-item video{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 2;    
}
.gallery-archive .gallery-grid .gallery-item h3{
    margin: 0px;
    font-family: "Sora",sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.4em;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #000;
}
.gallery-archive .gallery-grid .video-box-wrap{
    position: relative;
    overflow: hidden;
}
.gallery-archive .gallery-grid .video-box-wrap .fa-play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(53, 43, 194, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;  
    color: #fff; 
}
.gallery-archive .gallery-grid .video-box-wrap:hover .fa-play{
    background: #0A0C27;
}
/* Modal */
.post-type-archive-gallery .video-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.8);
    align-items: center;
    justify-content: center;
}
.post-type-archive-gallery .video-modal-content {
    max-width: 1080px;
    width: 90%; 
    position: relative;
}
.post-type-archive-gallery .video-modal video { width: 100%; }
.post-type-archive-gallery .video-modal .close {
    position: absolute;
    right: 10px; top: 10px;
    font-size: 40px;
    cursor: pointer;
    z-index: 1;
    line-height: 20px;
}
.single-gallery-page .entry-header{
    margin-bottom: 30px;
}
.single-gallery-page .entry-header .entry-title{
    font-family: "Sora", Sans-serif;
    font-weight: 300;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: -0.03px;
    color: #151515;
    margin: 0px;
    margin-bottom: 25px; 
}
.single-gallery-page .gallery-media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 55px 20px;
}

.single-gallery-page .gallery-media-item img,
.single-gallery-page .gallery-media-item video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 2;   
}
.dialog-type-lightbox{
    z-index: 99999;
}

/* Show arrow only on mobile (adjust max-width to your theme breakpoint) */
@media (max-width: 768px) {
  .site-navigation-dropdown .menu-item-has-children > a > .submenu-icon {
    content: "▾";
    display: inline-block;
    float: right;
    margin-left: 8px;
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .site-navigation-dropdown .menu-item-has-children.elementor-active > a > .submenu-icon {
    transform: rotate(-180deg); /* arrow up */
  }
  .subscribe-form button{
    padding: 15px 20px;
  }
}


/* Mobile :1 columns */
@media (min-width: 576px) {
    body:not([class*=elementor-page-]) .site-main {
        max-width: 100%;
    }
    .site-main .page-boxed, section.comments-area .comment-respond{
        padding-inline-end: 10px;
        padding-inline-start: 10px;
    }
}
/* 🖥️ Tablets: 2 columns */
@media (min-width: 768px) {
    body:not([class*=elementor-page-]) .site-main {
        max-width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .header-buttons {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-left: 20px;
    }
    .bg-left-right-part .e-con-inner{
        position: relative;
    }
    .bg-left-right-part .e-con-inner:before{
        content: '';
        position: absolute;
        left: 0px;
        top: 0px;
        width: 50%;
        height: 100%;
        background-color: #352BC2;
        transform: translateX(-100%);
    }
    .bg-left-right-part .e-con-inner:after{
        content: '';
        position: absolute;
        right: 0px;
        top: 0px;
        width: 50%;
        height: 100%;
        background-color: #F8F7F2;
        transform: translateX(100%);
    }
    .hero-post .hero-image,
    .hero-post .hero-content {
        flex: 1;
    }

    .hero-post .hero-image img {
        height: 100%;
    }

    .hero-post .hero-content h2 {
        font-size: 34px;
    }
    .blog-archive-container {
        padding: 50px 20px;
    }
    .blog-archive-container .post-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
    .pagination {
        gap: 12px;
    }

    .pagination .page-numbers {
    padding: 10px 18px;
    font-size: 15px;
    }
    .footer-subscribe-left,
    .footer-subscribe-right {
        flex: 0 0 calc(50% - 50px);
        max-width: calc(50% - 50px);
    }
    .footer-subscribe-left h2 {
        font-size: 50px;
        letter-spacing: -0.03px;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 0;
        padding: 20px 0;
    }
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 50px 0;
    }
    .footer-widgets .two-col {
        gap: 20px;
    }
    .footer-subscribe {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        padding: 0 0 30px 0;
    }
    .featured-properties-slider .property-slide .property-slide-info .property-title{
        font-size: 22px;
    }
    .featured-properties-slider .property-slide .property-slide-info .price{
        font-size: 16px;
    }
    .featured-properties-slider .property-slide .property-slide-info .builtup_area{
        font-size: 16px;
    }
    .featured-properties-slider .swiper-button-next, .featured-properties-slider .swiper-button-prev{
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    .featured-properties-slider .swiper-button-next:after, .featured-properties-slider .swiper-button-prev:after {
        font-size: 26px;
    }
    .gallery-archive .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .single-gallery-page .gallery-media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    body:not([class*=elementor-page-]) .site-main {
        max-width: 100%;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .hero-post {
        display: flex;
        gap: 30px;
        align-items: center;
        flex-direction: row;
    }

    .hero-post .hero-content {
        flex: 0 0 40%;
        max-width: 40%;
        align-items: center;
        text-align: left;
        justify-content: center;
        padding: 0;
    }
    .blog-archive-container .archive-title-row .archive-title{
        font-size: 90px;
    }
    .page-header h1.elementor-heading-title{
        font-size: 60px;
    }
    .md-justify-center {
        justify-content: center;
    }
    .blog-archive-container {
        padding: 70px 20px;
    }
    .blog-archive-container .post-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
        gap: 80px 30px;
    }
    .gallery-archive .archive-title{
        font-size: 90px;
        margin-bottom: 44px;
    }
    .gallery-archive .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .single-gallery-page .gallery-media-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-subscribe-left h2 {
        font-size: 72px;
        letter-spacing: -3.5px;
    }
    .footer-widgets {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 60px 0;
    }
    .hero-post .hero-content h2 {
        font-size: 34px;
      }
    .footer-subscribe-left h2 {
        font-size: 90px;
        letter-spacing: -4px;
    }
  .footer-subscribe {
    gap: 100px;
  }
}

@media(min-width: 1200px) {
    .hero-post .hero-content h2 {
        font-size: 44px;
    }
    body:not([class*=elementor-page-]) .site-main {
        max-width: 100%;
    }
}
@media(min-width: 1502px) {
    body .site-header .header-inner {
        padding: 0px 40px;
    }
}

@media screen and (max-width: 1502px) and (min-width: 992px) {
    .header-buttons a.btn svg{
        width: 22px;
        height: 22px;
    }
    .header-buttons a.btn{
        padding: 10px;
    }
    .header-buttons a.btn span{
        display: none;
    }  
    .site-navigation ul.menu li.menu-item-has-children{
        padding-inline-end: 0px;
    } 
}
@media screen and (max-width: 1074px) and (min-width: 992px) {
    .header-buttons {
        display: none;
    }  
}

@media screen and (max-width: 768px){
    body:not([class*=elementor-page-]) .site-main {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .header-buttons{
        margin: 0;
        padding: 0;
        position: relative;
        width: 100%;
        bottom: 0px;
    }
    .site-navigation-dropdown ul.menu{
        position: relative;
        overflow-y: auto;
    }
    .site-navigation-dropdown{
        top: 100%;
        margin-block-start: 0px;
        overflow-y: auto;
        min-height: 80vh;
    }
    .site-navigation-dropdown ul.menu li a,
    .header-buttons .btn{
        padding: 12px 15px;
    }
    .grid-img-left-m .elementor-image-box-wrapper{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    .grid-img-left-m .elementor-image-box-wrapper .elementor-image-box-title{
        margin-top: 0px;
    }  
    .site-footer .copyright{
        order: 1;
    } 
    
}