/** put css for your plugin here **/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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;
}


/*Responsive*/
@media screen and (min-width: 1024px){
	:root{
		--normal-font-size:1rem;
	}
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
  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;
}

 

ul{
	list-style: none;
}

a{
	text-decoration: none;
	color: #2487ce;
}
 

.small-text{
	color: #555;
	line-height: 25px;
}

.small-text-color{
	color: #555;
}

.sec-bg{
	background: radial-gradient(#fff,#ffd6d6);
}

.row1{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
}

.row2{
	display: flex;
	justify-content: space-around;
	/*align-items: center;*/
	flex-wrap: wrap;
	padding: 30px 15px;
}

.title{
	text-align: center;
	margin: 50px auto 80px;
	position: relative;
	line-height: 60px;
	color: #555;
}

.title::after{
	content: '';
	background: #2487ce;
	width: 80px;
	height: 5px;
	border-radius: 5px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

h4{
	color: #555;
	font-weight: normal;
}

.col-6{
	flex-basis: 70%;
	max-width: 700px;
}


.col-4 img{
	width: 100%;
	max-height: 30vh;
	height: 30vh;
}

.col-2 p{
	font-size: 14px;
}

.rating .fa{
	color: #2487ce;
}

.col-4:hover{
	transform: translateY(-5px);
}


/*landing section*/

.landing{
	background: radial-gradient(#fff,#fff);
	margin-top: 0;
}
.col-2{
	flex-basis: 50%;
	min-width: 250px;
}

.col-2 img{
	max-width: 100%;
	padding: 20px 0;
	 
} 

.col-2 h1{
	font-size: 50px;
	line-height: 60px;
	margin: 25px 0;
}

.col-2 p{
  font-size: 20px;
}


.btn{
	display: inline-block;
	background: #2487ce;
	color: #fff;
	padding: 8px 30px;
	margin: 30px 0;
	border-radius: 30px;
	transition: background 0.4s;
}

.btn:hover{
	opacity: 0.7;
	background: #2487ce;
	color: #fff;
}



 


.properties .property-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  height: 100%;
}

.properties .property-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.properties .property-item .property-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.properties .property-item .property-link:hover {
  text-decoration: none;
  color: inherit;
}

.properties .property-item .property-image-wrapper {
  position: relative;
  overflow: hidden;
}

.properties .property-item .property-image-wrapper img {
  width: 100%;
  height: 140px;
  object-fit: fill;
  transition: transform 0.4s ease;
}

.properties .property-item .property-image-wrapper:hover img {
  transform: scale(1.08);
}

.properties .property-item .property-image-wrapper .property-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.properties .property-item .property-image-wrapper .property-status .status-badge {
  display: inline-block;
  padding: 3px 6px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.featured {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.new {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.sale {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 20%));
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.rent {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.open {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.reduced {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 3;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn:hover {
  transform: scale(1.1);
  background-color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.favorite-btn:hover {
  background-color: #ef4444;
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.share-btn:hover {
  background-color: var(--accent-color);
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.gallery-btn:hover {
  background-color: var(--heading-color);
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn .gallery-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--accent-color);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 4px;
  border-radius: 10px;
  min-width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.properties .property-item .property-image-wrapper:hover .property-actions {
  opacity: 1;
  transform: translateX(0);
}

.properties .property-item .property-details {
  padding: 10px;
}

.properties .property-item .property-details .property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.properties .property-item .property-details .property-header .property-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.properties .property-item .property-details .property-header .property-price span {
  font-size: 11px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties .property-item .property-details .property-header .property-price .old-price{
  font-size: 13px;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-left: 8px;
}

.properties .property-item .property-details .property-header .property-type {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 1px 3px;
  border-radius: 20px;
  font-size: 7px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.properties .property-item .property-details .property-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.properties .property-item .property-details .property-address {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 11px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.properties .property-item .property-details .property-address i {
  color: var(--accent-color);
  flex-shrink: 0;
}

.properties .property-item .property-details .property-specs {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.properties .property-item .property-details .property-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--default-color);
}

.properties .property-item .property-details .property-specs .spec-item i {
  color: var(--accent-color);
  font-size: 13px;
}

.properties .property-item .property-details .property-agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.properties .property-item .property-details .property-agent-info .agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.properties .property-item .property-details .property-agent-info .agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.properties .property-item .property-details .property-agent-info .agent-details {
  flex: 1;
}

.properties .property-item .property-details .property-agent-info .agent-details strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.properties .property-item .property-details .property-agent-info .agent-details span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.properties .property-item .property-details .property-agent-info .agent-contact .contact-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.properties .property-item .property-details .property-agent-info .agent-contact .contact-btn:hover {
  transform: scale(1.1);
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}



 
   
@media (max-width: 576px) {
  .item-card{
    width: 50% !important;
  }

  .properties{
    margin-top: 20px !important;
    padding-top: 45px !important;
  }
}


/*Why Us*/

.how-to .card-item {
  background: color-mix(in srgb, #555555, transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.how-to .card-item span {
  color: #47b2e4;
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.how-to .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.how-to .card-item h4 a {
  color: #0d3035;
}

.how-to .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, #555555, transparent 40%);
  margin: 0;
  padding: 0;
}

.how-to .card-item:hover {
  background: #47b2e4;
  padding: 30px 30px 70px 30px;
}

.how-to .card-item:hover span,
.how-to .card-item:hover h4 a,
.how-to .card-item:hover p {
  color: #ffffff;
}

.category-list{
  padding-top: 25px;
  padding-bottom: 25px;
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  clip-path: inset(0);
  background: #47b2e4;
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #ffffff;
}

.call-to-action .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.call-to-action .cta-btn:hover {
  background: #ffffff;
  border: 2px solid #47b2e4;
  color: #47b2e4;
}

@media (max-width: 576px) {

  .landing{
    margin-top:70px;
  }

  .col-2{
    flex-basis: 100%;
    min-width: 300px;
    
  }

 .row1 .hero-sm-container{
    justify-content: center;
  }

  .row1 .col-2 h1,
  .row1 .col-2 p{
    text-align: center;
  }

  .row1 .col-2 a{
   margin-left: 23%;
  }

  .row1 .col-2 h1{
    font-size: 40px;
  }

  .col-2 p{
    font-size: 16px;
  }

}