/* --- Color Variables (Guessing based on the design) --- */
:root {
    --primary-dark: #0F2419; /* Dark Green */
    --primary-accent: #3A9265; /* Bright Green/Success Color */
    --light-gray: #F5F5F5;
    --text-color: #333;
}
*{padding: 0; margin: 0px; box-sizing: border-box;}
ul{list-style:none; padding:0px; margin:0px}
b{font-weight: 500;}
body{
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
    width: 100%;
}
.nav-list a img {
    width: 50px;
      object-fit: cover;
  transition: 0.4s ease;
}
.nav-list li:hover img {
  transform: scale(1.15);
}
  .header {
    background:#fff;
    border-bottom:1px solid #eee;
    padding:10px 0;
  }
  .wrapper {
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
  }
  .header-left { display:flex; align-items:center; gap:16px; }
  .logo {width: 200px; }

.search-box input {
    padding: 8px 12px 8px 40px;
    width: 300px;
    border-radius: 11px;
    border: 1px solid #327D56;
}
.search-box input::placeholder {
  color: #013F6E21;
  font-size: 16px;
  opacity: 1; /* required for Firefox */
}
ul.nav-list li {
    padding: 0 5px;    transition: 0.5s all;
}
.nav-list a img {
    width: 50px;
    border-radius: 10px;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.2);

}
.nav-list li:hover{
    margin-top: -4px;
}
  nav { display:flex; align-items:center; gap:16px; }
  .nav-list { display:flex; gap:22px; list-style:none; margin:0; padding:0; }
  .nav-list a { text-decoration:none; color:#0C0A0A; font-size:18px; font-weight: 500; }

  .login-btn {
    background:var(--primary-accent);
    color:white;
    padding:8px 16px;
    border-radius:6px;
    border:0;
    cursor:pointer;
  }
.search-box {
    position: relative;
    margin-left: 20px;
}

button.search-btn-header {
    position: absolute;
    top: 50%;
    left: 20px;
    background: transparent;
    border: 0px;
    transform: translateY(-58%);
}
  .mobile-menu-icon {
    display:none;
    font-size:26px;
    cursor:pointer;
    user-select:none;
  }

  /* OFFCANVAS - use transform for animation */
  .offcanvas {
    position:fixed;
    top:0;
    right:0;
    width:300px;
    height:100%;
    background:white;
    box-shadow:-12px 0 30px rgba(0,0,0,0.12);
    transform: translateX(100%); /* hidden by default */
    transition: transform 0.28s ease;
    z-index:1200;
    padding:18px;
    display:flex;
    flex-direction:column;
    gap:16px;
  }
  .offcanvas.open {
    transform: translateX(0); /* visible */
    z-index: 1111;
    visibility: visible;
  }

  .offcanvas .close-btn {
    align-self:flex-end;
    font-size:22px;
    cursor:pointer;
  }
  .offcanvas a {
    text-decoration:none;
    color:#111;
    padding:10px 0;
    border-bottom:1px solid #f1f1f1;
    font-size:18px;
  }
  .mobile-search {
     padding: 8px 12px 8px 29px;
    width: 400px;
    border-radius: 11px;
    border: 1px solid #327D56;
  }

  /* optional overlay when open */
  .overlay {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.35);
    opacity:0;
    visibility:hidden;
    transition: opacity .28s ease;
    z-index:1100;
  }
  .overlay.show {
    opacity:1;
    visibility:visible;
  }

  .flipbook-code {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  /* Flipbook wrapper */
  #magazine {
    width: 900px;
    height: 600px;
    position: relative;
  }

  /* The actual flipbook pages parent */
  .flipbook {
    width: 900px;
    height: 600px;
  }

  .flipbook .page {
    width: 100%;
    height: 100%;
    box-shadow: 
    0px 0px 25px rgba(0,0,0,0.35);
    position: relative;
  }


/* Right side inner shadow when page is on the right */
.page:nth-child(even)::after {
  background: radial-gradient(
    circle at right center,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.15) 20%,
    rgba(0,0,0,0) 55%
  );
}
  .flipbook .page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Invisible click zones */
  .zone {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 10000;
    cursor: pointer;
  }

  #left-zone { left: 0; }
  #right-zone { right: 0; }
.hero-row {
    display: flex;
    gap: 0px;
}
.hero-section img{width:100%;}

/* default small cards */
.category-card {
    /*flex: 1;*/
 /*   height: 88vh;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.4s ease;
}

/* make first card bigger */
.hero-row .category-card:first-child {
    /*flex: 2;*/
}
.category-card:after{
background: linear-gradient(269.38deg, rgba(0, 0, 0, 0.24) 32.07%, rgba(0, 0, 0, 0.6) 66.88%);
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
content: '';
}
.big-font{font-size:35px !important;}
.category-card:nth-child(3):after{
    display: none;
}
.category-card h3 {
    position: relative;
    z-index: 111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.hero-row {
    display: flex;
    justify-content: space-evenly;
}
section.counter-part{
    background: #F7F7F7;
    padding: 70px 0;
    text-align: center;
}
section.counter-part h2 {
    color: #0C0A0A;
}
section.counter-part h2 {
    color: #0C0A0A;
    font-size: 40px;
    font-weight: 600;
}
section.counter-part p {
    font-size: 20px;
    color: #1C2D37;
}
section.about-intro{
        padding: 70px 0;
}
.about-list , .about-list ul li{
position: relative;
padding-bottom: 20px;
}
.about-list ul li{padding-left:35px;}
.abkout-list-inner h3 {
    color: #0F2419;
    font-size: 20px;
    font-weight: 600;
}
.mySwiper1 img, .mySwiper2 img{width:100%;}
.about-list img, .about-list ul li img {
    position: absolute;
    left: 0px;
    top: 0px;
}
.abkout-list-inner {
    padding-left: 40px;
}
.mySwiper1 , .mySwiper2{
    padding: 10px;
}
.mySwiper1 .swiper-button-next,.mySwiper2 .swiper-button-next, .mySwiper2 .swiper-button-prev,
.mySwiper1 .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #3A9265;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.mySwiper1 .swiper-button-next:hover,
.mySwiper1 .swiper-button-prev:hover, .mySwiper2 .swiper-button-next:hover,
.mySwiper2 .swiper-button-prev:hover {
  background: #2f7c57;
  transform: scale(1.05);
}

/* Center arrow icon */
.mySwiper1 .swiper-button-next::after,
.mySwiper1 .swiper-button-prev::after, .mySwiper2 .swiper-button-next:after,
.mySwiper2 .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}
.abkout-list-inner p {
    color: #555555;
    font-size: 16px;
}
p.lead {
    font-size: 18px;
    color: #1C2D37;
    margin-bottom: 25px;
}
 h2.page-title {
    color: #0C0A0A;
    font-size: 35px;
    font-weight: 600;
    padding-top: 10px;
}
h5.subtitle{
    color: var(--primary-accent);
    font-size: 20px;
    position: relative;
    padding: 6px 0;
}
h5.subtitle:after{
    position: absolute; 
     content:'' ;
     top: 0px;
     left: 0px;
     width: 40px;
     height: 1.8px;
     border-radius: 4px;
    background: var(--primary-accent);
}
h5.subtitle:before{
    position: absolute; 
     content:'' ;
     bottom: 0px;
     left: 0px;
     width: 40px;
     height: 1.8px;
     border-radius: 4px;
    background: var(--primary-accent);
}

section.architect-part{
    background: var(--primary-dark);
    padding: 70px 0;
}
.page-head {
    text-align: center;
    width: 65%;
    display: block;
    margin: auto;
}
.page-head h5.subtitle:before, .page-head  h5.subtitle:after{
    left:50%; transform: translateX(-50%);
}
h2.page-title.white-color, .white-color  {
    color: #fff;
}

.mySwiper .swiper-wrapper{
    padding-bottom: 50px;
}

.project-card {

  border-radius: 16px;
  color: white;
  position: relative;
}

.project-card h5 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
}

.project-card .category {
  color: #c4d5ca;
  margin-bottom: 10px;
  font-size: 16px;
}

.project-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.review-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #00000099;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
}
span.review-badge img {
    width:15px;
    height:15px;
}
.project-card  .meta span {
  display: block;
  font-size: 14px;
  color: #c8d9d0;
}
.project-card  .meta span {
    padding-bottom: 13px;
}
.arrow-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height:60px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-size: 18px;
  transition: 0.5s all;
  padding: 1px;
  text-align: center;
}
.arrow-btn img{width: 100%;}
.arrow-btn:hover{background: var(--primary-accent);}
.arrow-btn i {
  color: #0d2818;
}
.mySwiper .swiper-pagination-bullet-active{
background-color: var(--primary-accent); opacity: 1 !important;;
}
.mySwiper .swiper-pagination-bullet{background:#fff;}
.mySwiper{margin-top: 50px;}

section.vendor-part{padding: 70px 0; background-color: #F7F7F7;}

.vendor-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px #4C4C4C33;

}

/* DEFAULT IMAGE */
.vendor-card .img-default {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* HOVER LAYER (hidden by default) */
.vendor-card .hover-area {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.5s ease;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 77.66%);

}

/* HOVER IMAGE */

/* TEXT + ICON AREA */
.vendor-card .hover-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    width: calc(100% - 40px);
}

.vendor-card .hover-content h4 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 600;
}

.vendor-card .hover-content p {
    font-size: 14px;
    margin: 0 0 10px 0;
}
button.vendor-arrow-btn {
    background: transparent;
    border: 0px;
    position: absolute;
    bottom: 0px;
    right: 0px;
}
.vendor-card  .meta span {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}
.venformeta span {
    display: block;
    margin-bottom: 10px;
}
.vendor-card .vendpr-arrow-btn {
    width: 45px;
    height: 45px;
    border: 2px solid white;
    background: transparent;
    border-radius: 50%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vendor-hover-inner {
    width: 80%;
}
.vendor-card  .vendpr-arrow-btn {
    color: white;
    font-size: 20px;
}

/* HOVER EFFECT â€” SWITCH IMAGE */
.vendor-card:hover .vendor-content {
    opacity: 0;
}

.vendor-card:hover .hover-area {
    opacity: 1;
}
.hover-content{
    display: flex;
}
.vendor-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    /* margin: 20px; */
    display: flex;
    background: #00000099;
    width: calc(100% - 40px);
    right: 20px;
    border-radius: 10px;
    padding: 10px;
}
.vendor-meta h3 {
    font-size: 20px;
    color: #fff;
}
.vendor-meta P {
    FONT-SIZE: 16px;
    COLOR: #FFF;
}
.vendor-meta {
    width: 80%;
}
.vendor-swiper {
    position: relative;
    padding-bottom: 100px;
    padding-top: 30px;
}
/* Center bottom wrapper */
.vendor-swiper .swiper-button-next,
.vendor-swiper .swiper-button-prev {
  position: absolute;
  bottom: 20px;       /* move buttons to bottom */
  top: auto;          /* cancel default 50% vertical centering */
  z-index: 20;
  width:60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;   /* default white circle */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  color: #000;
}

/* Center both buttons horizontally */
.vendor-swiper .swiper-button-prev {
  left: 50%;
  transform: translateX(-70px);  /* move left arrow slightly left */
}

.vendor-swiper .swiper-button-next, .vendor-swiper .swiper-button-next:hover{
  right: 50%;
  transform: translateX(70px);   /* move right arrow slightly right */
  background: var(--primary-accent);           /* green background like screenshot */
  color: #fff;
}
.vendor-swiper .swiper-button-prev:hover {
      background: var(--primary-accent);           /* green background like screenshot */
  color: #fff;
}
/* Remove default icons background */
.vendor-swiper  .swiper-button-next::after,.vendor-swiper  .swiper-button-prev::after {
  font-size: 18px !important;
}


section.property-part {
    padding: 70px 0;
}
.property-card {
    box-shadow: 0px 0px 20px 0px #4C4C4C33;
    border: 1px solid #B6E2CB;
    border-radius: 20px;
}
.property-card h3{color: #0F2419; font-size: 20px; font-weight: 600;    padding: 20px 20px 0;}
.property-card p{color: #1C2D37; font-size: 16px;    padding: 0px 20px 0;}

.property-flex {
    display: flex;
    width: 100%;
    padding: 0 20px;
}
.property-flex-inner h4{color: #1C2D37; font-size: 16px;   }
.property-flex-inner p span {
    color: #3A9265;
    font-size: 20px;
    font-weight: 600;
    padding: 0px;
}
.property-flex-inner p {
    padding: 0px;
}
.property-flex-inner {
    width: calc(100% - 70px);
}
button.link-btn-property {
    background: transparent;
    border: 0px;
    transition: 0.5s all;
    filter: brightness(0) saturate(100%) invert(46%) sepia(18%) saturate(1291%) hue-rotate(99deg) brightness(91%) contrast(92%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
button.link-btn-property:hover{
    filter:none;
    background: var(--primary-accent);
        transform: rotate(49deg);
}
button.link-btn-property img {
    width: 100%;
}
.view-btn a {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 15px 30px;
    text-transform: capitalize;
    text-decoration: none;
      background: var(--primary-accent);
      font-size: 18px;
      border-radius: 8px;
      font-weight: 600;
      color: #fff;
      transition: 0.5s all;
}
.view-btn a:hover{background-color: var(--primary-dark);}


section.choose-part {
    position: relative;
    padding: 60px 0;
}
.img-choose-position {
    position: absolute;
    left: 0px;
    width: 40%;
}
.img-choose-position img {
    width: 100%;
}
.timeline-section {
    position: relative;
    padding: 30px 0;
}
.choose-relative{
    margin-left: 42%;
}
/* Vertical center line */
.timeline-section::before {
    content: "";
    position: absolute;
    left: 0%;
    top: 0;
    width: 1px;
    height: 90%;
    background: #dfe7e3;
    transform: translateX(-50%);
    z-index: 1;
}
.timeline-section::after {
    content: "";
    position: absolute;
    right: 48%;
    top: 0;
    width: 1px;
    height: 90%;
    background: #dfe7e3;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-box {
    position: relative;
    padding: 20px 40px;
}

/* Number circle */
.timeline-box .circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #3a9265;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
box-shadow: 0px 0px 8px 0px #0000001A;
background: #fff;
    position: absolute;
    left: -24px;
    top: 0;
    z-index: 2;
}

/* For right column, circle moves right */
.timeline-box.right .circle {
    left: auto;
    right: -24px;
}

/* Horizontal line under title */
.line-horizontal {
    height: 1px;
    width: 100%;
    background: #e3e7e4;
    margin: 10px 0 15px;
}

/* Title */
.timeline-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #06271a;
    margin-left: 0px;
}

/* Text */
.timeline-box p {
    font-size: 15px;
    color: #4b5c55;
    line-height: 1.6;
    margin-left: 0px;
}


.img-benfit-position{
       position: absolute;
    right: 0px;
    width: 40%;
    top:0px
}
.img-benfit-position img {
    width: 100%;
}
.benefit-relative {
    margin-right: 40%;
}
.benefit-part{position: relative;}


.testimonial-card {
  width: 90%;
  background: #ffffff;
  padding: 40px 20px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  text-align: center;
  margin: 50px auto;
  position: relative;
}

.testimonial-card .profile-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-card .stars {
  color: #f6b800;
  margin-top: 35px;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-card .t-text {
  font-size: 15px;
  line-height: 1.6;
  margin: 15px 0 20px;
  color: #444;
}

.testimonial-card .name {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.testimonial-card .role {
  font-size: 13px;
  color: #777;
}

/* Swiper controls */
.custom-prev,
.custom-next {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.custom-prev::after,
.custom-next::after {
  font-size: 16px;
  color: #333;
}

/* Pagination dots */.testimonialSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1dede;
  opacity: 1;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  background: #3aaa8a;
}
 section.instagram-part{
    padding: 70px 0 0;
 }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 0px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(60%);
}

.gallery-item  .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.gallery-item:hover   .overlay {
  opacity: 1;
}

.gallery-item  .overlay i {
  color: #fff;
  font-size: 32px;
}

.footer {
  background: #151515;
  color: #ccc;
  padding: 60px 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  width: 30%;
  min-width: 260px;
}

.footer-logo {
  width: 300px;
  margin-bottom: 10px;
}

.footer .brand {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
}

.footer .desc {
  line-height: 1.6;
  font-size: 16px;
  color: #E7E7E7;
}

.footer .heading {
  color: #3A86FF;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-col p {
  margin: 12px 0;
  font-size: 16px;
  color:#CFD3D7;
}

.footer-col i {
  margin-right: 10px;
  color: #3A86FF;
}

.footer-link {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 34px;
  height: 34px;
  background:var(--primary-accent);
  color: #fff;
  margin-right: 10px;
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
  transition: .3s;
}
.social-icons a i {
    color: #fff;
    margin: 0px;
}
.social-icons a:hover {
  background: var(--primary-dark);
}
.footer-col-link a {
    display: block;
    width: fit-content;
    text-align: center;
    margin: 15px auto;
    font-size: 17px;
}
/* Bottom Line */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #aaa;
}




.inner-hero-section{
    background: url(../img/about-banner.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0;
}
.inner-hero-section:after {
    background: linear-gradient(269.38deg, rgba(0, 0, 0, 0.24) 32.07%, rgba(0, 0, 0, 0.6) 66.88%);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: '';
}
.inner-hero-section h1 {
    position: relative;
    z-index: 111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
}


.about-section {
  padding: 80px 8%;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
}

.about-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
  opacity: 0;             /* fade animation */
  transform: translateY(40px);
  transition: all .8s ease;
}

.about-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section  .title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* TABS */
.about-section  .tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}

.about-section .tab {
    font-size: 20px;
    cursor: pointer;
    padding-bottom: 8px;
    border-bottom: 2px solid #0F24191A;
    transition: all .3s ease;
    font-weight: 600;
    color: #0F2419;
}

.about-section  .tab:hover {
  color: #0c3125;
  transform: translateY(-2px);
}

.about-section  .tab.active {
  border-color: #c6c6c6;
  color: #000;
}

/* TAB CONTENT */
.about-section  .tab-content {
  display: none;
}

.about-section  .tab-content.active {
  display: block;
  animation: fadeTab .5s ease;
}

@keyframes fadeTab {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.about-section  .text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.about-section  .more-btn {
  display: inline-block;
  margin-top: 25px;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 5px;
}

.about-section  .right {
  border-left: 1px solid #ddd;
  padding-left: 40px;
  min-width: 30%;
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease .2s;
}

.about-section  .right.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section .stat {
    margin-bottom: 40px;
    display: flex;
    gap: 40px;

    align-items: center;
}
.about-section .stat h3 {
    font-size: 40px;
    font-weight: 600;
    color: #0F2419;
    margin-bottom: 5px;
}

.about-section  .stat p {
  color: #777;
  font-size: 14px;
  margin: 0;
}

.contact-inner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 auto;
  
    border-radius: 40px;
    background: #fff;
    padding: 60px 30px 60px;
}
.contact-inner .phone-number .img1 {
    height: 60px;
    width: 60px;
    text-align: center;
    background: #fff;
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s;
}
.contact-inner .phone-number {
    border-radius: 20px;
    background: #F1F2F3;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 24px;
    transition: all 0.4s;
    margin-bottom: 30px;
}
.contact-inner .phone-number:hover {
    background: var(--primary-accent);
    transition: all 0.4s;
}
.contact-inner .phone-number:hover .img1 {
    background: #fff;
    transition: all 0.4s;
}
.contact-inner .phone-number:hover .content p {
    color: #fff;
    transition: all 0.4s;
}
.contact-inner .phone-number:hover .content a {
    color: #fff;
    transition: all 0.4s;
}
.contact-inner .contact-boxarea {
    border-radius: 16px;
    background: #F2F3F3;
    padding: 32px;
}
.contact-inner .contact-boxarea .input-area input {
    width: 100%;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    padding: 17px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 20px;
    border: 1px solid #111;
}
.contact-inner .contact-boxarea .input-area textarea {
  width: 100%;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    padding: 17px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 20px;
    border: 1px solid #111;
    height: 180px;
}
.contact-inner .chosse-images {
    position: relative;
    z-index: 1;
}
.contact-inner .chosse-images .elements8 {
    position: absolute;
    left: 100px;
    top: 50px;
}
.contact-inner .chosse-images .img2 {
    border-radius: 16px;
    position: relative;
    z-index: 2;
    margin-top: -320px;
    left: 80px;
}
.contact-inner .chosse-images .img2 img {
    border-radius: 16px;
}
.phone-number a {
    color: #111;
    text-decoration: none;
}
.phone-number .content {
    padding-left: 20px;
}
.phone-number .content p {
    margin: 0px;
}
.contact-inner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 50px auto;
    max-width: 1376px;
    border-radius: 40px;
    background: #fff;
    padding: 60px 30px 60px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.maps-area {
    background: #fff;
    border-radius: 16px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}



.full-row {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}
.single-property-page .entry-single-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.entry-single-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--uc-dark-color);
    margin-bottom: 0;
    line-height: 45px;
}

.single-property-page .entry-single-wrapper .entry-single-header {
    display: flex;
    justify-content: space-between;
}

.single-property-page .entry-single-header .listing-location {
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
    font-size: 14px;
    color: var(--uc-text-color2);
    line-height: 25px;
}

.entry-property-price-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    gap: 20px;
}

.single-property-control {
    display: flex;
    gap: 5px;
}

.single-property-control li {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}

.single-property-control li a {
    color: var(--uc-dark-color);
    display: block;
    border-width: 1px;
    border-style: solid;
    border-color: var(--uc-dark-color);
    border-radius: 3px;
}

.single-property-page .entry-single-header .type span{
    padding: 5px 8px;
    font-family: var(--uc-primary-font);
    letter-spacing: 2px;
    background-color: var(--uc-primary-color) !important;
    text-transform: uppercase;
    font-size: 12px;
}

.single-property-page .listing-price {
    font-size: 24px;
    color: var(--uc-primary-color);
    font-family: var(--uc-primary-font);
    letter-spacing: 1px;
    font-weight: 600;
}

.single-property-page .listing-price small {
    font-size: 14px;
    color: var(--uc-text-color);
}

.single-property-page .listing-available {
    padding: 5px 8px;
    background-color: var(--uc-secondary-color);
    color: #fff;
    font-size: 12px;
    font-family: var(--uc-primary-font);
    letter-spacing: 1px;
    font-weight: 400;
}

.booking-shedule-tour,
.single-property-calculator,
.single-property-details,
.single-property-description,
.single-property-overview {
    padding: 35px;
    background-color: #fff;
    position: relative;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}

.single-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.single-content-wrapper .update-on {
    position: absolute;
    right: 35px;
    top: 25px;
    font-size: 12px;
    color: var(--uc-text-color3);
}
.single-content-wrapper p {
    color: #636363;
    font-size: 16px;
    line-height: 1.7;
}
.single-content-wrapper .property-feature,
.single-content-wrapper .property-address,
.single-content-wrapper .property-info {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.single-content-wrapper .property-info li {
    width: 33%;
    flex: 0 0 auto;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.single-content-wrapper .property-address li {
    width: 50%;
    flex: 0 0 auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.single-content-wrapper .property-feature li {
    width: 33%;
    flex: 0 0 auto;
    display: flex;
}

.single-content-wrapper .property-feature li span,
.single-content-wrapper .property-info li span,
.single-content-wrapper .property-address li span {
    font-weight: 500;
    color: #111;
}
.single-content-wrapper .property-feature li, .single-content-wrapper .property-info li, .single-content-wrapper .property-address li{color:#787878;}
li.breadcrumb-item a, .form-group.d-flex.gap-2 a{
    color: #3a9265;
    text-decoration: none;
}
.form-group {
    position: relative;
    display: flex;
    gap: 7px;
}
.form-select, .form-control {
    border-radius: 2px;
    min-height: 45px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    argin-bottom: 0;
    color: var(--uc-default-color);
    line-height: 1;
}
.single-property-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 0;
}

.single-contact-agent .scrollableList {
    width: 100%;
}

.single-contact-agent .createdList {
    width: calc(100% + 2px);
}
.single-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
select.makeMeList {
    width: 100%;
    padding: 8px;
    border: 1px solid #cbcbcb;
    box-shadow: navajowhite;
    outline: navajowhite;
    border-radius: 3px;
}
.contact-with-agent {
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.list-style li::before {
    position: relative;
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 12px;
    color: var(--theme-primary-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--theme-light-color);
    margin-right: 10px;
    text-align: center;
}

.blog-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,.08);
  transition:.3s;
}
.blog-card:hover{

}

.blog-card .img-wrap{
  position:relative;
}
.blog-card .img-wrap img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition: all .5s;
    transform: scale(1.1);
    pointer-events: none;
}

.blog-card:hover .img-wrap img{
    transform: scale(1.1) translateX(4%);
}
.blog-card .tag{
  position:absolute;
  top:15px;
  left:15px;
  background:#3a9265;
  padding:6px 14px;
  font-size:12px;
  font-weight:600;
  border-radius:6px;
  color: #fff;
}

.blog-card .content{
  padding:22px;
}
.content small{
  color:#777;
  font-size:13px;
}
.blog-card .content h4{
  font-size:20px;
  font-weight:700;
  margin:12px 0 8px;
  color: #3a9265;
}
  .blog-card .content p{
  font-size:15px;
  color:#666;
  margin:0;
}
.blog-card a{text-decoration: none; color: inhert;}


.blog-hero {
    background: #f3f5f7;
    margin: -120px 0 0;
    padding: 0 0 80px;
}

 .blog-hero .blog-box{
  background:#fff;
  padding:60px 50px;
  border-radius:28px;
  box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.blog-hero .category{
  display:inline-block;
  background:#d7f23c;
  padding:6px 14px;
  border-radius:8px;
  font-size:12px;
  font-weight:600;
  margin-bottom:18px;
}

.blog-hero .blog-box h1{
  font-size:38px;
  font-weight:700;
  line-height:1.3;
  margin-bottom:20px;
}

.blog-hero .author-meta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#666;
  margin-bottom:25px;
}

.blog-hero .author-meta img{
  width:36px;
  height:36px;
  border-radius:50%;
}

.blog-hero .dot{
  font-size:20px;
  line-height:0;
}

.blog-hero .intro{
  font-size:16px;
  color:#555;
  line-height:1.8;
}

.blog-hero .quote-box{
  background:#f7f7f7;
  padding:28px 30px;
  border-radius:14px;
  margin:30px 0;
  border:1px solid #eee;
  position:relative;
}



.blog-hero .quote-box p{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
}

.blog-her .quote-box span{
  font-size:14px;
  color:#666;
}
.passive-blog h5{
    font-size: 24px;

}
.passive-blog p{
    font-size: 17px; color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }
  .about-section  .right {
    border-left: none;
    padding-left: 0;
    margin-top: 40px;
  }
}



/* Responsive */
@media (max-width: 900px) {
  .footer-col {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .footer-col {
    width: 100%;
  }
}

  /* responsive */
  @media (max-width: 768px) {
    .search-box { display:none; }
    .nav-list, .login-btn { display:none; }
    .mobile-menu-icon { display:block; }
 .timeline-section::before {
        left: 20px;
    }
    .timeline-box .circle,
    .timeline-box.right .circle {
        left: -10px;
        right: auto;
    }
  }