/** put css for your plugin here **/


/* ********Product details *******/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Montserrat",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #263a31; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #103524; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2487ce; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.7);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #263a31; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2487ce; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #edf6f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #081b12;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1f3028;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #2487ce;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2a8f5f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


section {
  overflow: hidden;
  padding: 80px 0;
  margin-top: 60px;
  scroll-margin-top: 90px;
  overflow: clip;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: "Amatic SC", sans-serif;
}

.section-header p span {
  color: #2487ce;
}

.product-details{
  margin-top: 10px;
}

.product-details .product-name{
  font-size: 25;
  font-weight: 800;
}

.product-details .gallery #propertyImage{
  width: 100%;
  height: 40vh;
  padding: 0;
  border-radius: 10px;
  object-fit: fill;
}

.gallery .image-row{
  display: flex;
  justify-content: space-between;
}

.gallery .image-row .small-image-row{
  flex-basis: 24%;
  cursor: pointer;
}

.gallery .image-row .small-image-row img{
  width: 100%;
  height: 9vh;
  border-radius: 5px;
}

.product-details .col-2{
  padding: 25px;
}

.product-details h4{
  margin: 20px 0;
  font-size: 22px;
  font-weight: bold;
}

.product-info h3{
  font-size: 17px;
  font-weight: 800;
  color: #2487ce;
}


.car-info .nego small{
  
  font-size: 12px;
  width: 50%;
  border-radius: 50%;
  background-color: #2487ce;
  color: #ffffff;
  text-align: center;
}

.specifications h3{
  font-size: 18px;
  font-weight: bold;
  color: #2487ce;
}

.specifications div i, .personal-info i{
  color: #2487ce;
}


.personal-info .name{
  color: black;
  font-size: 14px;
  font-weight: 600;
}

.personal-info .name small{
  color: gray;
}

.personal-info .phone{
  color: black;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  margin-left: 0;
  padding-left: 0;
  position: relative;
}

.personal-info .phone i{
  font-size: 20px;
  margin-top: 8px;

}

 .more-details h3{
  color: black;
  font-size: 19px;
  font-weight: bold;
  color: #2487ce;
 }


/*--------------------------------------------------------------
# Searching tool
--------------------------------------------------------------*/

#searchingTool{
  display: none;
}

.property #removeSearchingTool:hover,{
  cursor: pointer;
}


/*--------------------------------------------------------------
# Privacy policy page
--------------------------------------------------------------*/
 .privacy-policy hr,
 .terms-conditions hr{
    width: 70%;
    margin-top: 20px;
 }

 .privacy-policy, .pprivacy-policy p, .pprivacy-policy li,
 .terms-conditions, .pterms-conditions p, .pterms-conditions li{
    text-align: justify;
    line-height: 22px;
 }

 .privacy-policy ul li,
  .terms-conditions ul li{
    margin-top: 10px;
  }


/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/

.property .property-member, .cardd {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  padding: 15px;
  border: none;
  transition: transform 0.3s ease-in-out;
}

 

.property .property-member:hover{
  transform: scale(1.1);
}

.property .property-member .member-img {
  position: relative;
  overflow: hidden;
}

.property .property-member .member-img img{
  height: 18vh;
  width: 100%;
}

.property .property-member .member-info {
  padding: 10px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.property .property-member .member-info .location {
  font-size: 10px;
  color: lightgray;
}

.property .property-member .member-info h5 {
  font-weight: bold;
  font-size: 14px;
  color: black; 
}
.property .property-member .member-info p {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 12px;
  color: darkgray; 
}

.property .property-member .member-info hr {
  margin-bottom: 0;
  color: gray;
}

.property .property-member .member-info small{
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 500;
  color: gray;
}


/*--------------------------------------------------------------
# Tips Section
--------------------------------------------------------------*/
.tips .content h3 {
  font-weight: 400;
  font-size: 34px;
}



.tips .tips-container .tips-item {
  background-color: #ffffff;
  position: relative;
  padding: 10px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tips .tips-container .tips-item:last-child {
  margin-bottom: 0;
}

.tips .tips-container .tips-item h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.tips .tips-container .tips-item h3 .do {
  color: #2487ce;
  padding-right: 5px;
}

.tips .tips-container .tips-item h3 .not {
  color: red;
  padding-right: 5px;
}

.tips .tips-container .tips-item .tips-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}


.tips .tips-container .tips-active .tips-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}


/*--------------------------------------------------------------
# Tips Section
--------------------------------------------------------------*/

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

.faq .question-icon i{
  font-size:300px !important;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }

  .faq .question-icon i{
    font-size:200px !important;
  }
}


/*similar*/

.similar-properties h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.similar-properties .similar-property-item {
  display: flex;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.similar-properties .similar-property-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.similar-properties .similar-property-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 15px;
  flex-shrink: 0;
}

.similar-properties .similar-property-item .similar-info h6 {
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
}

.similar-properties .similar-property-item .similar-info .similar-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
}

.similar-properties .similar-property-item .similar-info .similar-specs {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 12px;
  margin: 0;
}

.property-details .similar-properties .similar-property-item {
    flex-direction: column;
    text-align: center;
  }

  .property-details .similar-properties .similar-property-item img {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    height: 120px;
  }



@media (max-width: 576px){
    .privacy-policy,
    .terms-conditions{
      margin-top: 20px !important;
    }
  }
 