

/*
Theme Name: Child Theme
Author: 
Description: Your description goes here
Version: 1.0
Template: blocksy

This is the child theme for Blocksy theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/


/*
 put all css codes here

for each section css add *comments* around it so you can find it easily 

PRO TIP : use command + F(control + F in windows i guess) to search for a specific class in this file..

example below
*/
/* general css */
body{
  --primary-teal: #003849;
  --teal-hover: #e4a853;
  --light-gray: #f8f9fa;
  --medium-gray: #5a6268;
  --dark-gray: #343a40;
  --white: #ffffff;
  --border-gray: #dee2e6;
  --accent-blue: #007bff;
  --accent-gold: #e4a853;
  --font-primary: "Jost", sans-serif;
  --font-body: "Jost", sans-serif;
  --nav-bg: #003849;
  --compact-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var( --font-primary) ;
}
p {
    font-family: "Jost", sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important; 
    line-height: 1.75em !important;
    color: #333 !important;
    margin-bottom: 20px !important;
}



/* header css code here */
.hero-nav {
  background-color: var(--nav-bg);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.nav-container {
  max-width:var(--compact-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:0 15px;
  width:100%;
}

.logo {
  width: 200px;
  height: 47px;
}

.nav-menu {
  margin-top:6px;
  display: none;
  align-items: center;
  gap: 25px;
  list-style: none;
  color: white;
  font-size: 15px;
  margin:0px !important;
}
@media (max-width:900px){
    .nav-menu {
    gap:20px;
    }
}
a{
    text-decoration: none !important;
}
.nav-link {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  padding:0px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.mobile-menu-btn {
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 8px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
}
.mobile-menu-btn i{
    font-size:20px;
}


/* footer css code here */



.footer {
    background-color: #003849;
    color: white;
    font-family: 'Jost', sans-serif;
}

.footer-container {
    max-width: var(--compact-width);
    width:100%;
    margin:0 auto;
    padding:0px 15px;
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: grid;
    grid-template-columns:repeat(3,1fr);
    gap: 30px;
    padding:50px 0px;
}

.footer-section h3 {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    line-height: 1.25em;
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-section p {
    color: white !important;
    font-size: 15px !important;
    font-family: "Jost", sans-serif !important;
    font-weight: 400  !important;
    line-height: 1.75em  !important;
    margin-bottom:0px !important;
}

.footer-section ul {
    list-style: none;
    margin:0px !important;
    padding:0px !important;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    display: block;
    font-size: 17px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    position: relative;
    font-family: "Jost", sans-serif !important;
    font-weight: 400  !important;
    line-height: 1.75em  !important;
    width: fit-content;
}
.footer-section ul li a::before{
    position: absolute;
    top: 55%;
    left: 0;
    bottom: 0;
    width: 6px;
    height: 6px;
    content: "";
    background-color: #e3845a;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.footer-section ul li a:hover::before,
.footer-section ul li a.active::before{
    opacity: 1;
}
.footer-section ul li a:hover ,
.footer-section ul li a.active{
    color:var(--teal-hover);
    padding-left:15px;
}

.read-more {
    color: #ffff;
    text-decoration: none;
    font-size: 15px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    line-height: 1.75em;
}


.contact-info p{
    font-size: 17px !important;
    margin: 0 !important;
    color: #fff !important;
    padding-bottom: 20px !important;
    font-family: "Jost", sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.75em !important;
}

.contact-info i {
    margin-right: 10px;
    width: 16px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 25px;
}

.social-icons a {
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 30px;
    background-color: transparent;
    -webkit-transition: all 500ms ease;
}

.social-icons a:hover {
    color: #f51919;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0px;
    font-size: 13px;
    color: #ffff;
    border-top: 1px solid rgba(255, 255, 255, 1);
}
.footer-bottom p{
    margin-bottom: 0px !important;
    color: #ffff !important;;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
}


/* mobile sidebar css code here */
.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  background-color: var(--nav-bg);
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transform: translateY(10%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu.active.visible {
  transform: translateY(0px); /* Move 15px down when visible */
  opacity: 1;
}

.nav-menu.active li {
  margin: 0px 0;
}



@media (min-width: 900px) {
  .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    transform: none;
    opacity: 1;
  }


  .nav-menu.active {
    transform: none;
    animation: none;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* hero section css code here */


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--dark-gray);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 48px; font-weight: 700; }
h4 { font-size: 24px; line-height: 1.4; }

.hero-section {
  position: relative;
  padding:5em 0em;
  width: 100%;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  justify-content: center;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 16px;
  margin-top: -40px;
  margin:0 auto;
  max-width: 950px;
}

.hero-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.hero-stars  i{
  color: var(--accent-gold);
  font-size: 16px;
}

.hero-subtitle {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.hero-title {
    position: relative;
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;
    font-size: 68px;
    text-transform: uppercase;
    line-height: 1.35em;
    color: #fff;
    font-weight: 500;
    letter-spacing: 5px;
}
@media (max-width:900px){

.hero-title{
	font-size:50px;
}
}
@media (max-width:750px){

.hero-title{
	font-size:40px;
}
}
@media (max-width:600px){

.hero-title{
	font-size:30px;
}
}
@media (max-width:500px){

.hero-title{
	font-size:28px;
}
}

.hero-btn {
  background-color:#003849;
  color: white;
  border: none;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 30px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  border-radius: 10px;
  line-height: 1.5; 
  font-family: "Jost", sans-serif;
} 
.hero-btn:hover{
    background: #e4a853;
    color: #fff;
}


.scroll-arrow {
  z-index: 20;
}

.scroll-arrow > div {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; /* Increased to accommodate padding and border */
  height: 50px; /* Increased to accommodate padding and border */
  border: 1px solid white; /* 1px circle border */
  border-radius: 50%; /* Circular shape */
  padding: 4px; /* 4px padding */
  animation: bounce 2s infinite;
  cursor: pointer;
}
.scroll-arrow div i{
  font-size: 15px;
}
.scroll-arrow div:hover{
    border-color:#e4a853;
}
.scroll-arrow div:hover i{
    color:  #e4a853;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 64px;
  }
}


/* malik , css */
.entry-content.is-layout-constrained > div ,
.entry-content.is-layout-constrained > section{
    width:100% !important;
    margin-block-start:0px !important;
    margin-block-end:0px !important;
    max-width: 100% !important;
}
.nav-container > a{
    padding:15px 15px 15px 0px;
}

#main .ct-container-full{
    padding:80px 0px 0px 0px  !important;
}


/* about section */
.min-h-screen2 {
    background-color: #f8f9fa;
    color: #5a6268;
    font-family: "Jost", sans-serif;
    line-height: 1.6;
}

.container2 {
    max-width: var(--compact-width);
    margin: 0 auto;
    padding: 0 15px;
}



.welcome-section2 {
    background-color: white;
    padding: 50px 0px;
}

.welcome-content2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.welcome-text2 {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.welcome-text2 h2 {
    font-size: 22px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #222;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
}

.welcome-btn2 {
    font-weight: 400;
    font-family: "Jost", sans-serif;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(228,133,93,1) 0%, rgba(167,132,102,1) 50%, rgba(63,130,117,1) 100%);
    background: #003849;
    color: #fff !important;
    padding: 13px 22px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 3px;
    border-radius: 10px;
    width:fit-content;
    overflow: hidden;
}

.welcome-btn2 span{
    color: #fff !important;  
    z-index: 2;
    position: relative;
}

.welcome-btn2::before{
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left:0%;
    z-index: 1;
    background: #e4a853;
    color: #fff;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.welcome-btn2.mouseIn:before {
    left:0%;
   width:100%;
}
.welcome-btn2.mouseOut:before {
    width:0%;
    left:100%;
}

.welcome-image2 {
    flex: 1;
}

.welcome-image2 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .welcome-content2 {
        flex-direction: row;
    }
}

/* what we do */
.min-h-screen3 {
    color: #5a6268;
    background-color: #f8f9fa;
}

.container3 {
    max-width: var(--compact-width);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}



/* Services Section 3 Styles */
.services-section3 {
    background-color: white;
}

.services-header3 {
    text-align: center;
}

.services-header3 h2 {
    font-size: 22px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #222;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
}

.services-grid3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.service-card3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  border-radius: 12px;
  background: rgba(0, 56, 73, .12);
}

.service-icon3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:5px;
}

.service-icon3 img {
    height: 70px;
    width: 70px;
    object-fit: contain;
}

.service-card3 h5 {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    line-height: 1.25em;
    margin: 0 0 10px 0;
    font-size:20px;
}

.service-card3 p {
    margin-bottom:0px;
}

/* our rental homes seciton*/
.rental-areas-section4 {
    background-color: white;
    padding: 50px 0px;
}
.container4 {
    max-width: var(--compact-width);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

.rental-header4 {
    text-align: center;
}

.rental-header4 h2 {
    font-size: 22px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #222;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
}

.rental-grid4 {
    margin-top: 30px;
    display: grid;
    /* Default to 4 columns on large screens */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
}

/* For tablet-sized screens and smaller */
@media (max-width: 992px) {
    .rental-grid4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For mobile-sized screens */
@media (max-width: 576px) {
    .rental-grid4 {
        grid-template-columns: 1fr;
    }
}

.rental-card4 {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
}

.rental-card4 img {
    width: 100%;
    height: 356px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rental-card4:hover img {
    transform: scale(1.05);
}

.rental-overlay4 {
    position: absolute;
    bottom: 0;
    left: 20px;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}

.rental-overlay4 h4 {
    color: #ffffff;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    line-height: 1.25em;
    margin: 0 0 20px 0;
    font-size:20px;
}
/* video section */

.container5 {
    max-width:var(--compact-width);
    margin: 0 auto;
    padding: 50px 15px;
}

.about-intro-section5 {
    background-color: white;
}

.about-content5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-text5 {
    flex: 1;
}

.about-text5 h3 {
    font-size: 22px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #222;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
}


.about-image5 {
    flex: 1;
    display: flex;
}

.circular-image5 {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('/wp-content/uploads/2025/09/2.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.circular-image5::before{
    content:'';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #000;
    border-radius: 20px;
    opacity: .3;
}
.circular-image-content{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:100%;
    height: 100%;
    z-index:2;
    padding: 15px;
    text-align: center;
}
.circular-image-content > span{
    display: flex;
    align-items: center;
    gap:2px;
    margin-bottom:10px;
}
.circular-image-content > span i{
    color: #e4a853;
    font-size: 15px !important;
}

.circular-image-content > .section-subtitle{
    font-size: 15px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 6px;
    margin-bottom: 5px;
}
.circular-image-content > .section-title{
    font-size: 22px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #fff;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
}
.play-button5 {
    width: 100px;
    height: 100px;
    background-color:transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #e4a853;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.play-button5::before{
    content:'';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 5px;
    left: 5px;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s cubic-bezier(1, 0, 0, 1);
}
.play-button5:hover::before{
    transform: scale(0);
}
.play-button5::after{
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 5px;
    left: 5px;
    border: 1px solid #eee;
    border-radius: 50%;
    z-index: -1;
}

.video-modal5 {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    flex-direction: column;
    gap:10px;
    justify-content: center;
    align-items: center;
    padding:15px;
}
.video-modal5.show{
    display: flex !important;
}
.video-modal5 iframe {
    width:100%;
    max-width:680px;
    height:383px;
}


.close-button5 {
    width:100%;
    max-width:680px;
    color:white;
    display: flex;
    align-items: center;
    justify-content: end;
    
}
.close-button5 i{
    cursor: pointer;
    font-size:13px;
    font-weight: 900;
}
.close-button5:hover i{
    opacity: .8;
}
.about-text5,
.about-image5{
    flex:auto;
    width:100%;
}
@media (min-width: 768px) {
    .about-content5 {
        flex-direction: row;
        gap: 40px;
    }
    .about-text5,
    .about-image5{
        flex:1;
    }
}
/* testimonials */

.testimonials-section {
    background: #003849;
    padding: 50px 0;
    color: var(--white);
    position: relative;
}

.testimonials-section::before {
    content: "";
    background: url("/wp-content/uploads/2025/09/testimonial-bg-1.png");
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.testimonials-section .container {
    max-width: var(--compact-width);
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}


.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-section .section-subtitle {
    font-family: "Jost", sans-serif;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 10px;
}

.testimonials-section .section-title {
    font-size: 32px;
    font-weight: 400;
    color: #fff !important;
    margin-bottom: 10px !important;
    font-family: "Jost", sans-serif;
    line-height: 1.25em;
    margin: 0 0 20px 0;
}
.testimonials-section .line{
    width: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.testimonials-container{
    cursor: pointer;
}


.testimonials-slider {
    display: none;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.3s ease;
}

.testimonial-card {
    text-align: left;
}

.testimonial-text {
    color: white !important;
    text-align: center;
    word-break: break-all;
    position: relative;
}
.testimonial-text::before{
    position: absolute;
    bottom:0px;
    right:20px;
    content:' ';
    width:70px;
    height: 70px;
    background-image:url('/wp-content/uploads/2025/09/quote-img.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.star {
    color: var(--accent-gold);
    font-size: 14px;
}

.author-name {
    font-size: 15px;
    margin-bottom: 0px;
    padding-top: 0px;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    color: #fff;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.author-label {
    font-size: 12px;
    color: #fff;
    line-height: 1em;
    margin-top:8px;
}


.testimonials-section .swiper-pagination{
    position: relative !important;
    margin-top:30px;
}
.testimonials-section  .swiper-pagination-bullet{
    padding:5px !important;
}
.testimonials-section  .swiper-pagination-bullet-active{
    background-color:#e4a853 !important;
}
/* why choose us */
.container7 {
    max-width: var(--compact-width);
    margin: 0 auto;
    padding: 0px 15px;
}


.enquiry-section7 {
    background-color: white;
    padding: 50px 0 ;
}

.enquiry-content7 {
    display:flex;
    gap: 30px;
}
@media (max-width:770px){
   .enquiry-content7 {
    flex-direction: column;
} 
}
.form-section7,
.why-choose-us7{
    flex:1;
}
.form-section7{
    padding:60px 45px;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(45deg, #fff3f3, #f2f8ff);
    border-radius: 20px;
}
.form-section7 h6{
    font-size: 15px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    color: #333;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 6px;
    margin-bottom: 10px;
}
.form-section7 h4{
    font-size: 27px;
    font-weight: 400;
    color: #222;
    border-bottom: 1px solid #ececec;
    padding-bottom: 15px;
    font-family: "Jost", sans-serif;
    line-height: 1.25em;
    margin: 0 0 20px 0;
}
#wpforms-48{
    margin:0px !important;
}
#wpforms-48 form{
    display: flex;
    flex-direction: column;
}
#wpforms-48 label{
    display: none;
}
#wpforms-48  .wpforms-field-container > div{
    padding:0px !important;
}
#wpforms-48  .wpforms-field-container > div input,
#wpforms-48  .wpforms-field-container > div select{
    display: block  !important;
    width: 100%  !important;
    font-size: 15px  !important;
    color: #222  !important;
    padding: 20px 40px 20px 20px  !important;
    background: #fff  !important;
    border: none  !important;
    box-shadow: none  !important;
    border-radius: 10px  !important;
    height: auto !important;
    max-width: 100% !important;
    margin-bottom:15px !important;
}
#wpforms-48 .wpforms-field-container div input::placeholder,
#wpforms-48 .wpforms-field-container  div select::placeholder{
    color: #222 !important;
    opacity: 1 !important; /* ensures the color is not faded */
}

.wpforms-submit-container{
    margin-top:15px !important;
}
#wpforms-submit-48{
    display: block;
  padding: 0;
  border: none;
  margin: 0;
    margin-top: 0px;
  width: 100%;
  max-width: 100%;
  background: #003849 !important;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  text-decoration: none;
  line-height: 62.5px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-out;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 10px;
  height: auto !important;
  font-weight: 400 !important;
}
#wpforms-submit-48:hover{
      background:var(--teal-hover);
}
div.wpforms-container-full .wpforms-form em.wpforms-error{
    margin:15px 0px !important;
}
/* Hide spin buttons for Chrome, Safari, Edge */
#wpforms-48-field_11::-webkit-outer-spin-button,
#wpforms-379-field_4::-webkit-inner-spin-button {
  -webkit-appearance: none !important; 
}

/* Hide spin buttons for Firefox */
#wpforms-48-field_11,
#wpforms-379-field_4 {
  -moz-appearance: textfield !important;
}
.why-choose-us7{
    display: flex;
    flex-direction: column;
}
.why-choose-us7 h2 {
font-size: 22px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  color: #222;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.25em;
}

.why-choose-us7 p {
    color: #5a6268;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.achievements-grid7 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width:100%;
}

.achievement7 {
    display: flex;
    align-items: center;
    gap: 5px;
}
.achievement7 span{
    font-family: "Jost", sans-serif !important;
    color: #333 !important;
}
.achievement7 i{
     color: #333 !important;   
}
#wpforms-confirmation-48{
    background-color: transparent !important;
    border-color: transparent !important;
    font-family: "Jost", sans-serif !important;
    color: #333 !important;
}
/* portals */
.portals-section8{
    background-color: #ffffff;
    padding: 50px 0 ;
}
.portals-section8 .container8{
    width:100%;
    max-width:var(--compact-width);
    margin:0 auto;
    padding:0px 15px;
}
.portals-section8 .container8 h2{
    font-size: 22px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #222;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
}
.portals-section8 .container8  .swiper-wrapper{
    cursor: pointer;
}
.portals-section8 .container8  .swiper-slide{
    background: #fff9f9;
    border-radius: 15px;
    padding: 0 15px;
}
.portals-section8 .container8  .swiper-slide img{
    height: 100px;
    object-fit: contain;
}



.progress-wrap{
    position: fixed;
    bottom: 14%;
    right: 27px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg{
    fill:none;
}
.progress-wrap svg path{
    fill:none;
    stroke-width: 2;
    stroke: #45a1a0;
}
.progress-wrap::after{
    position: absolute;
  font-family: 'themify';
  content: '\e648';
  text-align: center;
  line-height: 45px;
  font-size: 12px;
  font-weight: 700;
  color: #45a1a0;
  left: 0;
  top: 0;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}









  /* Hero Banner Section */
    .hero1-banner,
    .hero-banner {
        position: relative;
        height: 320px;
        background-image: url('/wp-content/uploads/2025/09/JLT.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        overflow: hidden;
        border-bottom-left-radius: 36px;
        border-bottom-right-radius: 36px;
    }

    .hero1-banner::before,
    .hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.2);
        z-index: 1;
    }


    .hero-banner .hero-content,
    .hero1-banner .hero-content{
        padding:0px;
        margin:0px !important;
        text-align: start !important;
        align-items: start !important;
    }

     .hero-banner .container,
      .hero1-banner .container{
          width:100%;
          max-width: var(--compact-width);
          margin:0 auto;
          padding:0 15px;
    }


    .hero1-title,
     .hero-title  {
        font-size: 64px;
        font-weight: 400;
        color: #ffffff;
        font-family: "JOST", sans-serif;
        margin: 0px !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        position: relative;
        z-index: 2;
        text-transform: capitalize;

    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero1-title,
         .hero-title  {
            font-size: 36px;
        }



        .container11 {
            padding: 0 15px;
        }
    }

    @media (max-width: 480px) {
         .hero1-title,
         .hero-title {
            font-size: 28px;
        }

        .hero1-banner,
        .hero-banner {
            height: 300px;
        }


    }



/* Apartments Grid Section */
.apartments-section {
    padding: 50px 0;
    background-color:white;
}
.apartments-section .container {
  max-width: var(--compact-width);
  margin: 0 auto;
  padding: 0 15px;
}
.apartments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Lightened from rgba(0, 0, 0, 0.3) */
    transition: background 0.3s ease-in-out;
    z-index: 1;
}

.property-card:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.property-card.non-clickable {
    cursor: default;
}

.property-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease-in-out;
    z-index: 0;
}

.property-card:hover .property-image-bg {
    transform: scale(1.05);
}

.property-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    color: #ffffff;
    height: 100%;
    justify-content: flex-end;
}

.property-title {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.4;
    font-family: "Jost", sans-serif;
    transform: translateY(50px);
    transition: transform 0.3s ease-in-out, margin-bottom 0.3s ease-in-out;
    padding-bottom:8px;
}

.property-card:hover .property-title {
    transform: translateY(20px);
    margin-bottom: 12px;
}

.property-area-name{
    text-transform: uppercase;
    color: var(--accent-gold);
}

.property-divider {
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin: 15px 0;
    width: 50px;
    transform: translateY(28px);
    transition: width 0.5s ease-in-out, margin 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.property-card:hover .property-divider {
    width: 100%;
    margin: 10px 0;
    transform: translateY(0);
}

.details-text {
    color: #ffffff;
    font-size: 16px;
    display: inline-block;
    font-family: "Jost", sans-serif;
    align-self: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}

.property-card:hover .details-text {
    opacity: 1;
}

.details-text::after {
    content: ' →';
    color: #ffffff;
    font-weight: 500;
    font-size: 21px;
}

/* Responsive Design */
@media (max-width: 800px) {
    .apartments-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}


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

/* landlord cards*/
.process-section13 {
    background-color: #ffffff;
    padding: 50px 0px;
}

.container13 {
    max-width: var( --compact-width);
    padding: 0px 15px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;

}

.section-title13 {
    font-size: 40px;
    font-weight: 400;
    color: #222;
    text-align: center;
    line-height: 1.5;
    margin:0px !important;
}

.process-grid13 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.process-card13 {
    background:rgba(69, 161, 160, .1);
    border-radius: 12px;
    padding: 20px 16px;
    transition: all 0.3s ease;
    border: 1px solid #333333;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.process-card13:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon13 {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.card-icon13 img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.card-title13 {
    font-size: 18px;
    font-weight: 400;
    color: #222;
    line-height: 1.3;
    margin-bottom: 8px;
    text-align: center;
}

.card-description13 {
    font-size: 14px;
    color: #737373;
    line-height: 1.2;
    flex-grow: 1;
    text-align: center;
}

@media (max-width: 1024px) {
    .process-grid13 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width:600px;
        margin-left:auto;
        margin-right:auto;
    }

    .section-title13 {
        font-size: 36px;
    }



    .process-card13 {
        min-height: 280px;
        padding: 16px 12px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .process-grid13 {
        grid-template-columns: 1fr;
        max-width:300px;
    }

    .section-title13 {
        font-size: 28px;
    }

    .process-card13 {
        padding: 12px 10px;
        min-height: 260px;
    }
}
/* faq */
.qa-faq-container {
    font-family: 'Jost', sans-serif;
    width: 100%;
    max-width: 56rem; 
    margin: 0 auto; 
    padding: 50px 0px; 
    background-color: white; 
}



.qa-faq-items-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; 
    max-width: var(--compact-width);
    margin:0 auto;
    padding:0px 15px;
    gap:30px;
}



.qa-faq-item {
    background-color: #F9FAFB; /* gray-50 */
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); /* shadow-sm */
    overflow: hidden;
    transition: margin-bottom 0.3s ease-in-out, background-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%; /* Ensures cards take full width of container */
    max-width: 48rem; /* Optional: limits card width for better centering */
}

.qa-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em; 
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.qa-faq-question h3 {
    font-size: 18px; /* Smaller font from 1rem */
    font-weight: 600;
    color: #222; /* gray-800 */
    margin:0px;
}

.qa-faq-icon {
    color: #2563EB; /* blue-600 */
}

.qa-hidden {
    display: none;
}

.qa-faq-answer {
    padding-left: 0.75rem; /* Reduced padding from 1rem */
    padding-right: 0.75rem; /* Reduced padding from 1rem */
    padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}


.qa-faq-item.qa-active {
    background-color: white;
    box-shadow: none;
}
.qa-faq-item.qa-active .qa-faq-answer {
    max-height: 1000px; /* Large enough to fit content */
}

/*rules page*/
  .rules-section {
    background: #ffffff;
    color: #222;
    padding: 50px 0;
    font-family: "Jost", sans-serif !important;
  }

  .rules-container {
    max-width:var(--compact-width);
    margin: 0 auto;
    padding: 0 15px;
  }

  .rules-card{
     display:flex;
     flex-direction:column;
  }


  .rules-list {
    display: grid;
    gap: 20px;
    list-style: disc;
    margin-top:10px;
  }

  .rules-list li {
    line-height: 1.5;
    font-family: "Jost", sans-serif !important;
    color:#333;
    font-size:15px;
  }

  .rules-list li strong {
    color: #222;
    font-weight: 700;
  }
/* contact us page css code */
  .contact-section {
    background: white;
    padding: 50px 15px;
  }

  .contact-container {
    max-width: var(--compact-width);
    margin: 0 auto;
    padding: 0 15px;
  }

   /*form styles here*/
  #wpforms-379,
  #wpforms-379 form {
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
  }




  .contact-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  /* ===============================================
    Card Styling (Both Info and Form)
  =============================================== */

  .contact-card {
    flex: 1;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  /* Left Card: Contact Information */
  .contact-card:first-child {
    background-color: #fff;
  }

  .contact-title {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin: 0 0 10px 0;
    line-height: 1.25em;
  }

  .contact-subtitle {
    color: #5a6268;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
  }

  .contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .contact-icon {
    margin-top: 2px;
  }

  .contact-item-label {
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
  }

  .contact-item-value,
  .contact-link {
    font-size: 16px;
    color: #5a6268;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-link:hover {
    color: #164a4a;
  }

  .contact-note {
    margin-top: 35px;
    font-style: italic;
    font-size: 14px;
    color: #5a6268;
  }

  /* Social Icons Styling */
  .social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
  }

  .social-icon-link svg {
    fill: #1e5a5a;
    transition: fill 0.3s ease;
  }

  .social-icon-link:hover svg {
    fill: #164a4a;
  }

  /* Right Card: Contact Form */
  .contact-card:last-child {
    background: linear-gradient(45deg, #f2f8ff, #fff3f3);
  }

  /* ===============================================
    WPForms Styling (ID #379)
  =============================================== */

  #wpforms-379 .wpforms-field-label {
    display: block !important;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
  }

  #wpforms-379 .wpforms-field-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  #wpforms-379 .wpforms-field {
    padding: 0 !important;
  }

  #wpforms-379 .wpforms-field-container input,
  #wpforms-379 .wpforms-field-container select,
  #wpforms-379 .wpforms-field-container textarea {
    display: block !important;
    width: 100% !important;
    font-size: 15px !important;
    font-family: "Jost", sans-serif;
    color: #222 !important;
    padding: 18px 20px !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    border-radius: 10px !important;
    height: auto !important;
    max-width: 100% !important;
  }

  #wpforms-379 .wpforms-field-container ::placeholder {
    color: #999 !important;
    opacity: 1 !important;
  }

  #wpforms-submit-379 {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 15px 0 0 0 !important;
    background: #1e5a5a !important;
    color: #fff !important;
    font-family: "Jost", sans-serif !important;
    font-size: 15px !important;
    line-height: 60px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease-out !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    border-radius: 10px !important;
    height: auto !important;
    font-weight: 400 !important;
  }

  #wpforms-submit-379:hover {
    background: #164a4a !important;
  }

  div.wpforms-container-full .wpforms-form em.wpforms-error {
    margin: 15px 0 !important;
  }

  #wpforms-confirmation-379 {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-family: "Jost", sans-serif !important;
    color: #5a6268 !important;
  }

  /* ===============================================
     MOBILE RESPONSIVE STYLES
  =============================================== */

  /* For Tablets and below */
  @media (max-width: 992px) {
    .contact-grid {
      flex-direction: column;
    }
    .contact-card {
      width: 100%; /* THIS IS THE FINAL FIX */
    }
    .contact-section {
      padding: 60px 0; /* Reduced vertical padding */
    }

  .contact-container {
    padding: 0 15px;
  }


  }

  /* For Mobile phones */
  @media (max-width: 767px) {
    .contact-card {
      padding: 30px; /* Reduced padding inside cards */
    }

    .contact-title {
      font-size: 24px; /* Slightly smaller title on mobile */
    }

    .contact-list {
      gap: 20px; /* Tighter spacing for contact items */
    }

 .contact-container {
    padding: 0 15px;
  }


  }
#wpforms-379-field_1-container .wpforms-field-row.wpforms-field-medium{
max-width:100%;
}

/* inventory page */
[data-id="77b7a34"]{
    display: none !important;
}
.sticky-mobile-filter.make-fixed{
    display: none !important;
}







.stm-directory-grid-loop {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  position: relative;
  border: 1px solid #e7e7e7;
  margin-bottom: 25px;
  margin-left:5px;
  padding: 0 !important; /* THIS IS THE FIX: Forcefully removes theme padding */
}

/* Hover effect for the card */
.stm-directory-grid-loop:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Remove underline from the main link */
.stm-directory-grid-loop > a.rmv_txt_drctn {
  text-decoration: none !important;
  display: flex; /* Use flexbox to manage layout */
  flex-direction: column; /* Stack children vertically */
  height: 100%; /* Ensure link fills the card */
  color: inherit;
  padding: 0; /* FIX: Ensures no unwanted space around the image */
}

/* ===============================================
   Image Section
=============================================== */

/* Image container */
.stm-directory-grid-loop .image { 
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  /* border-radius is inherited from the main container's overflow:hidden */
}




/* The actual image */
.stm-directory-grid-loop .image-inner{
    width:100% !important;
}
.stm-directory-grid-loop .image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Zoom effect on image when hovering the card */
.stm-directory-grid-loop:hover .image img {
  transform: scale(1.03);
}

/* Hiding elements not present in the reference image design */
.stm-directory-grid-loop .stm-listing-photos-unit,
.stm-directory-grid-loop .price {
  display: none;
}



.custom-price-label{
    display:none ;
}


/* ===============================================
   Content / Meta Section
=============================================== */

/* Main content area below the image */
.stm-directory-grid-loop .listing-car-item-meta {
  padding: 20px !important; /* FIX: Corrected padding value */
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Allows this section to grow and push the footer down */
}





/* ===============================================
   Inventory cards and Base Styles
=============================================== */




.elementor-element-11fff5f{
    all: unset;

}



.stm-directory-grid-loop .car-meta-top {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

/* Property Title */
.stm-directory-grid-loop .car-title {
  font-size: 23px !important;
  line-height: normal !important;
  font-weight: 600 !important;
  color: #333333 !important;
  text-transform: capitalize !important;
}

/* Features list (Location, Bed, Bath, etc.) */
.stm-directory-grid-loop .car-meta-bottom ul {
  list-style: none;
  padding: 20px 10px !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  flex-wrap: wrap !important;
  column-gap: 15px !important;
  row-gap: 20px !important;
}

.stm-directory-grid-loop .car-meta-bottom li {
  display: flex !important;
  align-items: center !important;
  color: #333 !important;
  font-size: 13px !important;
  width: 100% !important;
  padding: 0px !important;
  margin: 0px !important;
}

.stm-directory-grid-loop .car-meta-bottom li span {
  line-height: normal !important;
}

/* Icons in the features list */
.stm-directory-grid-loop .car-meta-bottom li i {
  color: #0d3d3d !important;
  font-size: 14px !important;
  text-align: center !important;
  margin-right: 8px; /* Added for spacing between icon and text */
}

/* ===============================================
   View Details Button Section
=============================================== */


/* =================================================================
   SECTION 3: "Two-Button" Footer (IMPROVED FLEXBOX VERSION)
   - With smaller buttons.
================================================================= */





/* --- 1. Style the container that holds the buttons --- */
.property-button-container {
    display: flex;
    gap: 20px;             /* UPDATED - Increased from 10px for more space */
    margin-top: auto;
}

/* --- 2. Common styles for both <a> buttons --- */
.property-button-container a.btn-property {
    flex: 1;               /* Make both buttons take up equal space */
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px;
    text-decoration: none; /* Remove underline from links */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
    text-align: center;
}

/* --- 3. Style the "Book Now" button (visually on the left) --- */
.property-button-container a.btn-book-now {
    color: #0d3d3d;
    border: 1.5px solid #0d3d3d;
    order: 1; /* Ensures this button appears first */
}

/* --- 4. Style the "Details" button (visually on the right) --- */
.property-button-container a.btn-details {
    background-color: #ffffff;
    color: #0d3d3d;
    border: 1.5px solid #0d3d3d;
    order: 2; /* Ensures this button appears second */
}
.property-button-container{
    justify-content: space-between !important;
}
.property-button-container a.btn-property{
    max-width: 120px;
}

/* --- 5. Hover effects for each button --- */
.property-button-container a.btn-book-now:hover {
    background-color: #115757;
    color: #ffffff!important;
    border-color: #115757;
}

.property-button-container a.btn-details:hover {
    background-color: #0d3d3d;
    color: #ffffff!important;
}






.custom-btn-property-item-container {
  display: none;
}


[data-id="5608ae4"],
.car-listing-modern-grid {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0px !important;
  padding: 0px !important;
}

.car-listing-modern-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  width: 100% !important;
  gap: 24px !important;
}

.car-listing-modern-grid::before,
.car-listing-modern-grid::after {
  display: none !important;
}

.stm-directory-grid-loop {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0px !important;
}

/* --- Responsive Styles --- */

/* Tablet Devices (screens up to 1024px wide) */
@media (max-width: 1024px) {
  .car-listing-modern-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* Changes from 3 columns to 2 */
  }
}

/* Mobile Devices (screens up to 767px wide) */


@media (max-width: 767px) {
  .car-listing-modern-grid {
    grid-template-columns: repeat(1, 1fr) !important; /* Main cards stack to 1 column */
    place-items:center;
  }

  .car-listing-modern-grid > div{
      max-width: 350px !important;
  }

  .stm-directory-grid-loop .car-title {
    font-size: 20px !important; /* Slightly smaller title for small screens */
  }

  /* The rule forcing the features list to 1 column has been removed, 
     so it will now default to the 2-column grid. */
}










/* --- COMPLETE CUSTOM CSS FOR PROPERTY PAGE REDESIGN --- */

/* ===================================================================
   SECTION 1: Main Page Layout Reordering
   =================================================================== */
.elementor-widget-wrap.elementor-element-populated {
  display: flex !important;
  flex-direction: column !important;
}

/* Re-ordering the main page sections */
[data-id="eee64c6"] { order: 1 !important; } /* Image Gallery */
[data-id="e49611c"] { order: 2 !important; } /* Title and Price section */
[data-id="56c4070"] { order: 3 !important; } /* Property Data list */
[data-id="b786ad4"] { order: 4 !important; } /* Amenities section */
[data-id="d55358c"] { order: 5 !important; } /* "Description" heading */
[data-id="dea687f"] { order: 6 !important; } /* Description text */


/* ===================================================================
   SECTION 2: Title & Price Block Redesign
   =================================================================== */

/* Stack the Name and Price columns vertically */
[data-id="e49611c"] > .elementor-container {
  display: flex !important;
  flex-direction: column !important;
}

/* Ensure columns are full-width */
[data-id="e49611c"] .elementor-column {
  width: 100% !important;
}

/* Visually re-order the stacked columns (Price first) */
[data-id="3a3581e"] { order: 1 !important; } /* Price column */
[data-id="5344489"] { order: 2 !important; } /* Property Name column */

/* Force left-align the Name widget */
[data-id="b464aa7"] {
  text-align: left !important;
}



[data-id="de2d80c"] .price::before {
  background-color: transparent !important;
  display: none !important; /* This will hide it completely */
}


/* Style the price tag itself */
[data-id="de2d80c"] .price {
  background-color: #003849 !important;
  color: #FFFFFF !important;
  padding: 8px 15px !important;
  border-radius: 4px !important;
  display: inline-block !important;
  float: left !important;
  margin: 0 !important;
}

/* Add "/ Monthly" text after the price */
[data-id="de2d80c"] .price::after {
  content: " / Monthly";
}

/* Force left-alignment on the price tag's container */
[data-id="de2d80c"] .stm-listing-single-price-title {
  justify-content: flex-start !important;
  text-align: left !important;
}







/* --- UPDATED: Combined rule for rounded corners --- */
/* This now applies the same rounded corners to the gallery link, the post image, AND the slider image */
.stm_fancybox,
.wp-post-image,
.stm-single-image { /* Added the new class here */
    border-radius: 8px !important;
    overflow: hidden !important; /* Ensures the image inside is clipped to the rounded shape */
}

/* --- Rule for the link container to behave correctly --- */
/* This ensures the link fills its space properly */
.stm_fancybox {
    display: block !important;
}




.stm_fancybox {
    border-radius: 12px !important; /* Adjust the value (e.g., 5px, 10px, 15px) to your preference */
    overflow: hidden !important; /* This is crucial: Hides any square corners of the image itself that might poke out */
    display: block !important; /* Ensures the border-radius applies uniformly */
}



/* ===================================================================
   SECTION 3: Property Data List Redesign (Corrected)
   =================================================================== */

/* Add border and center content for each list item */
[data-id="56c4070"] .data-list-item {
  border: 1px solid #e0e0e0 !important;
  padding: 15px !important;
  border-radius: 5px !important;
  text-align: center !important;
}

/* Change icon color */
[data-id="56c4070"] .data-list-item i {
  color: #003849 !important;
}

/* Apply side padding to an INNER container to create the 20px gaps */
[data-id="56c4070"] .stm-single-car-listing-data {
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}

/* Control the grid layout to respect the new padding */
[data-id="56c4070"] .data-list-wrap {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 15px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* ===================================================================
   SECTION 4: Responsive Adjustments for Property Data List
   =================================================================== */

/* --- Tablet View --- */
@media (max-width: 1024px) {
  [data-id="56c4070"] .data-list-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* --- Mobile View --- */
@media (max-width: 767px) {
  [data-id="56c4070"] .stm-single-car-listing-data {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  [data-id="56c4070"] .data-list-wrap {
    grid-template-columns: 1fr !important;
  }
}


/* ===================================================================
   SECTION 5: Amenities Section
   =================================================================== */
[data-id="b786ad4"] li i {
  color: #003849 !important;
}


/* --- NEW: Make the container full width --- */
.grouped_checkbox-4 {
    width: 100% !important;
    box-sizing: border-box; /* Ensures padding doesn't add to the width */
}

/* Target the specific amenities list inside the container */
.grouped_checkbox-4 ul {
    /* Remove default list styling */
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    
    /* --- FORCING 6-COLUMN GRID LAYOUT --- */
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important; 
    gap: 15px !important;
}

/* Style each amenity item as a card */
.grouped_checkbox-4 ul li {
    /* --- FORCING CARD LAYOUT --- */
    display: flex !important;
    flex-direction: column !important; /* Stack icon on top of text */
    align-items: center !important;   /* Center items horizontally */
    justify-content: center !important; /* Center items vertically */
    text-align: center !important;
    
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 15px 5px !important;
    min-height: 90px !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

/* Add a subtle hover effect */
.grouped_checkbox-4 ul li:hover {
    border-color: #cacaca !important;
}

/* Style the icon */
.grouped_checkbox-4 ul li i {
    font-size: 24px !important;
    margin-bottom: 8px !important;
}

/* Style the text */
.grouped_checkbox-4 ul li span {
    font-size: 14px !important;
    color: #333 !important;
    font-weight: 500 !important;
    line-height: 1.7 !important;
}

/* --- Responsive CSS for Tablets and Smaller Desktops --- */
@media (max-width: 1024px) {
    .grouped_checkbox-4 ul {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* --- Responsive CSS for Mobile --- */
@media (max-width: 767px) {
    .grouped_checkbox-4 ul {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    .grouped_checkbox-4 ul li {
        min-height: 80px !important;
        padding: 10px 5px !important;
    }
    .grouped_checkbox-4 ul li i {
        font-size: 20px !important;
        margin-bottom: 5px !important;
    }
    .grouped_checkbox-4 ul li span {
        font-size: 12px !important;
    }
}

/* --- Responsive CSS for Very Small Phones --- */
@media (max-width: 480px) {
    .grouped_checkbox-4 ul {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}





/* ===================================================================
   SECTION 6: Description "Read More" Toggle
   =================================================================== */
.truncated-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

div[data-id="d55358c"].elementor-widget-heading .elementor-heading-title {
  font-size: 26px !important;       /* Specific pixel size, adjust if needed */
  font-weight: 700 !important;      /* Semibold weight to match */
    font-family: 'Jost', sans-serif !important;
  text-transform: none !important;  /* Prevents any forced uppercasing */

}




.read-more-btn {
  background-color: #003849;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
}
.read-more-btn:hover {
  opacity: 0.9;
}



/* Selects the .e-con-inner ONLY inside your specific outer container */
[data-id="0f62aba"] .e-con-inner {
    max-width: var(--compact-width)!important;
    margin: 0 auto!important;
    padding: 0 15px!important;/*  */
    width: 100%!important;
    padding-bottom:20px!important;

}







[data-id="0f62aba"] {
    /* 25px for top & bottom, 50px for left & right */
 
padding-left:0!important;
padding-right:0!important;

}



/* Selects the FIRST elementor-section on the page */
.elementor-section:first-of-type {
    max-width: var(--compact-width)!important;
    margin: 0 auto!important;
    padding: 0 15px;
    width: 100%!important;
     padding-bottom:16px!important;

}





[data-widget_type="motors-inventory-search-results.default"] .elementor-widget-container {
    margin: 0 !important;
}

[data-id="5608ae4"] .elementor-widget-wrap {
    /* 20px for top & bottom, 0px for left & right */
    padding: 50px 0!important; 
}




.single-listings main > div > section > div,
.single-listings main > div > section > div > div > div{
    margin:0px !important;
    width:100% !important;
    max-width:100% !important;
    padding:0px !important;
}

.single-listings main > div > section[data-element_type="section"]{
    margin-top:120px !important;
}

.stm-single-car-listing-data ul li::before{
    display: none !important;
}

.single-listings [data-widget_type="motors-single-listing-classified-listing-data.default"] > div.elementor-widget-container,
.single-listings [data-widget_type="motors-single-listing-features.default"]  > div.elementor-widget-container {
    margin-bottom:25px !important;
    padding-bottom:55px !important;
}



.single-listings [data-widget_type="heading.default"],
.stm-single-listing-car-features.grouped_features .lists-horizontal .grouped_checkbox-4 h4{
    margin-bottom:20px !important;
}


.single-listing-whatsapp-btn{
    position: fixed;
    bottom: 50px;
    left: 30px;
    display: flex;
    align-items: center;
    padding: 5px 25px;
    border-radius: 100vw;
    background-color: #003849;
    gap: 10px;
    color: white !important;
    font-weight: 500;
    font-family: 'Jost', sans-serif !important;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0px 0px 10px rgba(255, 255, 255,.1) !important;
}
.single-listing-whatsapp-btn i{
    font-size:20px;
}


.motors-elementor-single-listing-gallery .motors-elementor-big-gallery .stm-single-image a img{
    height: 65vh !important;
    max-height: 700px !important;
}
.motors-elementor-single-listing-gallery{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.motors-elementor-single-listing-gallery > div:last-child > .swiper-wrapper > div{
    margin-right:0px !important;
    width: 100% !important;
    display: flex !important;
    max-width: 100% !important;
}
.motors-elementor-single-listing-gallery > div:last-child > .swiper-wrapper > div > img{
    width: 100% !important;
    max-width: 100% !important;
}
.motors-elementor-single-listing-gallery .motors-elementor-thumbs-gallery .swiper-slide-thumb-active:after {
        width: 100% !important;
    max-width: 100% !important;
}
.motors-elementor-single-listing-gallery > div:last-child > .swiper-wrapper {
    overflow:visible !important;
    transform:translate3d(0px,0px,0px) !important;
    display: grid  !important;
    grid-template-columns: repeat(6,1fr)  !important;
    gap:20px !important;
}
@media (max-width:800px){
    .motors-elementor-single-listing-gallery > div:last-child > .swiper-wrapper {
        grid-template-columns: repeat(4,1fr)  !important;
    }
}
@media (max-width:550px){
    .motors-elementor-single-listing-gallery > div:last-child > .swiper-wrapper {
        grid-template-columns: repeat(2,1fr)  !important;
    }
}
.motors-elementor-single-listing-gallery > div{
    width:100% !important;
}

.motors-elementor-single-listing-gallery > .motors-elementor-thumbs-gallery{
    max-width:900px !important;
    overflow: visible !important;
}



.motors-elementor-single-listing-gallery > .motors-elementor-thumbs-gallery .stm-swiper-controls .stm-swiper-next,
.motors-elementor-single-listing-gallery > .motors-elementor-thumbs-gallery .stm-swiper-controls .stm-swiper-prev{
    display: none !important;
}



.motors-elementor-single-listing-gallery{
    margin:0px !important;
}
.elementor-2567 .elementor-element.elementor-element-1f2ac8a .title{
    font-weight: 400 !important;
}
.button-group-container.single-listing{
    border:none !important;
    justify-content: space-between !important;
}
.button-group-container a{
    white-space: nowrap;
}




.amenities-container {
    max-width: 1400px;
    width: 100%;
    margin: 20px auto; 
    box-sizing: border-box;
}

.amenities-container h2 {
    font-size: 26px;
    color: #333; /* Kept dark for light background */
    margin-top: 0; 
    margin-bottom: 25px;
}
.amenities-container.single-listing{
    padding: 0px 20px 80px 20px;
    border-bottom: #67b1b1 dashed 2px;
    margin-top: 0px;
    margin-bottom: 50px;
}
.amenities-container.single-listing h2{
    font-weight: 400; 
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    background-color: rgba(69, 161, 160, .1);
    border-radius: 8px;
    text-align: center;
    min-height: 100px; 
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

.amenity-item i {
    font-size: 32px;
    color:  #003849; /* Kept dark for light background */
    margin-bottom: 10px;
}

.amenity-item span {
    font-size: 14px;
    color: #444; /* Kept dark for light background */
    line-height: 1.3;
}

/* Specific icon adjustments */
.fa-wind {
    transform: scaleX(-1);
}

/* Optional hover effect */
.amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}





    
/* --- 1. The main container for the button group --- */
.button-group-container {
    display: flex;
    justify-content: start ;
    gap: 80px;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
    font-family: sans-serif;
    /* This allows buttons to wrap onto the next line if needed */
    flex-wrap: wrap; 
}

/* --- 2. Unified styles for ALL buttons in the group --- */
.btn-group-item {
    flex: 1; /* On large screens, buttons share space equally */
    max-width: 180px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    /* Unified "outline" style */
    background-color: transparent;
    border: 2px solid #003849;
    color: #003849!important;
}

/* This rule ensures the icons also use the new color */
.btn-group-item i {
    color: #003849;
}

.btn-stars i {
    color: #ffc107!important; /* Gold color for the stars */
}


/* --- 3. Unified HOVER effect for ALL buttons --- */
.btn-group-item:hover {
    background-color: #003849;
    color: #ffffff!important;
}

/* This rule ensures the icons also turn white on hover */
.btn-group-item:hover i {
    color: #ffffff;
}

/* --- 4. RESPONSIVE STYLES for tablets and mobile --- */

/* This rule applies to screens 768px wide or smaller */
@media (max-width: 768px) {
    .button-group-container {
        /* Adjust the gap for vertical stacking */
        gap: 15px; 
    }
}




    
    /* --- Main container for the two columns --- */
/* --- Main container for the two columns --- */
.media-map-container {
    display: flex;
    gap: 50px; 
    padding: 5px;
    max-width: 1400px; /* UPDATED: Increased from 1200px to make the component wider */
    margin: 10px auto; 
    font-family: sans-serif;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom:50px;
}

/* --- Styles for each column --- */
.media-column {
    flex: 1; /* Each column takes up equal space */
    display: flex;
    width: 100%;
    min-width: 0px;
}

/* --- Responsive Wrapper for Embeds --- */
.responsive-embed {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 8px;

    display: flex;
    width: 100%;
    height: 100%;
    margin: 0px;
}

.responsive-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}



/* --- 4. RESPONSIVE STYLES for tablets and mobile --- */

@media (max-width: 550px) {
    .media-map-container {
        /* Added !important to force the style to apply */
        flex-direction: column !important;
        
    
        gap: 15px; 
    }

    
    .media-column {
    flex: 1;

}
}



.elementor-widget-motors-single-listing-gallery,
.elementor-widget-motors-single-listing-classified-title,
[data-id="f545bce"],
.elementor-widget-motors-single-listing-description{
    margin-bottom:20px !important;
}



.listing-car-item-meta .car-meta-bottom{
    border:none !important;
}

.elementor.elementor-2563{
    background-color:white !important;
}



/* custom single listing page slider */
.custom-listing-gallery{
    display: flex;
    flex-direction: column;
    gap: 22px;
    width:100%;
}
.custom-gallery-sm{
    position: relative;
}
.custom-gallery-lg-wrapper,
.custom-gallery-sm-wrapper,
.custom-gallery-lg,
.custom-gallery-sm{
    width:100%;
    position: relative;
}
.custom-gallery-lg-slide{
    width:100% !important;
    height: 65vh !important;
    max-height: 700px ;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.custom-gallery-sm-slide{
    cursor: pointer;
    height:130px !important;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}
.custom-gallery-sm-slide img,
.custom-gallery-lg-slide img{
    width:100% !important;
    height:100% !important;
    object-fit: cover;
    object-position: center;
}


.custom-gallery-sm-button-prev::after,
.custom-gallery-sm-button-next::after,
.custom-gallery-sm-button-prev svg,
.custom-gallery-sm-button-next svg{
    display: none !important;
}
.custom-gallery-sm-pagination{
position: relative !important;
  top: 0px !important;
  bottom: 0px !important;
  margin-top: 10px !important;
}

.custom-gallery-sm-pagination .swiper-pagination-bullet-active{
    background-color:#003849 !important;
}


.custom-listing-gallery{
    position: relative;
}
.custom-gallery-sm-button-prev,
.custom-gallery-sm-button-next{
 background-color: #003849 !important;
  height: 130px  !important;
  margin:0px !important;
  top:0px !important;

}
.custom-gallery-sm-button-prev{
    border-radius: 8px 0px 0px 8px;
    transform: translateX(-4px) !important;
}
.custom-gallery-sm-button-next{
    border-radius: 0px 8px 8px 0px;
    transform: translateX(4px) !important;
}
.custom-gallery-sm-button-prev i,
.custom-gallery-sm-button-next i{
font-size: 30px;
  color: white;
}

.custom-gallery-sm-slide.swiper-slide-thumb-active {
    position: relative;
}
.custom-gallery-sm-slide.swiper-slide-thumb-active::after {
    content:' ';
    position: absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    background-color:rgba(0,0,0,.3);
}