/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
a
{text-decoration: none;}
.header {
 background: #fff;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 76px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
 background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 800;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: .2s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
   filter: brightness(1.1);
}

@media (max-width: 992px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
    display: none;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 992px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-900);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 18px 15px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 991.98px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
:root{
      --primary:#145229;
      --bg-light:#f1f2f4;
      --bg-dark:#22252a;
      --charcoal:#23272B;
      --text-dark:#101913;
      --muted:#578e6a;
      --radius:12px;
      --radius-lg:16px;
      --radius-xl:24px;
      --primary:#1e522f;
      --background-light:#ffffff;
      --background-dark:#27282b;
      --charcoal:#25272a;
      --muted-grey:#f4f6f9;

      --text-light:#111813;
      --text-muted:#64748b;
      --text-muted-dark:#94a3b8;
      --border-light:#eaf1ec;

      --radius:12px;
      --radius-lg:16px;
      --radius-xl:24px;
      --radius-full:9999px;
      --transition:all .3s ease;
      --container:1280px;
    }

    *{margin:0;padding:0;box-sizing:border-box;}
    body{
      font-family:"Manrope",sans-serif;
      background:var(--bg-light);
      color:var(--text-dark);
      transition:0.3s;
    }

    /* Layout Helpers */
    .container{
      max-width:1280px;
      margin:auto;
      padding:0 24px;
    }
    .flex{display:flex;}
    .items-center{align-items:center;}
    .justify-between{justify-content:space-between;}
    .justify-center{justify-content:center;}
    .text-center{text-align:center;}
    .gap-3{gap:12px;}
    .gap-4{gap:16px;}
    .gap-6{gap:24px;}
    .gap-8{gap:32px;}
    .gap-10{gap:40px;}
    .mb-3{margin-bottom:12px;}
    .mb-4{margin-bottom:16px;}
    .mb-6{margin-bottom:24px;}
    .mb-8{margin-bottom:32px;}
    .mb-10{margin-bottom:40px;}
    .mt-auto{margin-top:auto;}
    .pt-4{padding-top:16px;}
    .pt-8{padding-top:32px;}
    .pt-20{padding-top:80px;}
    .pt-24{padding-top:96px;}
    .pb-10{padding-bottom:40px;}
    .pb-12{padding-bottom:48px;}
    .pb-24{padding-bottom:96px;}
    .py-12{padding:48px 24px;}
    .py-20{padding:80px 40px;}
    .py-24{padding:96px 24px;}
    .px-6{padding-left:24px;padding-right:24px;}
    .px-10{padding-left:40px;padding-right:40px;}
    .rounded{border-radius:8px;}
    .rounded-xl{border-radius:var(--radius);}
    .rounded-2xl{border-radius:var(--radius-xl);}
    .soft-ui-shadow{box-shadow:0 10px 30px -10px rgba(0,0,0,.08);}

    /* Header */
    header{
      position:sticky;
      top:0;
      z-index:50;
      width:100%;
      background:rgba(255,255,255,.8);
      border-bottom:1px solid rgba(20,82,41,.10);
    }
    .header-wrap{
      height:80px;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }
    .logo-box{
      width:40px;height:40px;
      background:var(--primary);
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:18px;
    }
    .brand-title{
      color:var(--primary);
      font-size:35px;
      font-weight:800;
      letter-spacing:-0.5px;
    }
    .brand-title span{font-weight:300;}
    nav{
      display:flex;
      gap:40px;
    }
    nav a{
      font-size:14px;
      font-weight:600;
      text-decoration:none;
      color:inherit;
      transition:.2s;
    }
    nav a:hover{color:var(--primary);}
    .header-actions{
      display:flex;
      gap:16px;
      align-items:center;
    }
    .btn-primary{
      background:var(--primary);
      color:#fff;
      padding:10px 24px;
      font-size:14px;
      font-weight:800;
      border:none;
      border-radius:16px;
      cursor:pointer;
      transition:.2s;
    }
    .btn-primary:hover{opacity:.9;}
    .profile-pic{
      width:40px;height:40px;
      border-radius:999px;
      border:2px solid rgba(20,82,41,.2);
      background-size:cover;
      background-position:center;
    }

    /* Hero */
    .hero{
      position:relative;
      height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
    }
    .parallax-hero{
      position:absolute;
      inset:0;
      background-attachment:fixed;
      background-position:top;
      background-repeat:no-repeat;
      background-size:cover;
    }
    .hero-content{
      position:relative;
      z-index:2;
      max-width:900px;
      text-align:center;
      padding:0 24px;
      color:#fff;
    }
    .hero-badge{
      display:inline-block;
      padding:6px 16px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.20);
      border-radius:999px;
      font-size:11px;
      font-weight:800;
      letter-spacing:.2em;
      text-transform:uppercase;
      backdrop-filter:blur(10px);
      margin-bottom:24px;
    }
    .hero h1{
      font-size:56px;
      font-weight:900;
      line-height:1.1;
      letter-spacing:-1px;
      margin-bottom:32px;
    }
    .hero p{
      font-size:18px;
      opacity:.9;
      font-weight:300;
      max-width:650px;
      margin:0 auto 40px;
      line-height:1.7;
    }
    .hero-buttons{
      display:flex;
      gap:16px;
      justify-content:center;
      flex-wrap:wrap;
    }
    .btn-hero{
      padding:16px 40px;
      border-radius:16px;
      font-weight:800;
      border:none;
      cursor:pointer;
      transition:.25s;
      font-size:16px;
    }
    .btn-hero.primary{
      background:var(--primary);
      color:#fff;
    }
    .btn-hero.primary:hover{transform:scale(1.05);}
    .btn-hero.outline{
      background:rgba(255,255,255,.10);
      color:#fff;
      border:1px solid rgba(255,255,255,.30);
      backdrop-filter:blur(10px);
    }
    .btn-hero.outline:hover{background:rgba(255,255,255,.20);}

    /* Section Heading */
    .section{
      background:#fff;
    }
    .section-header{
      padding:96px 24px 48px;
    }
    .section-header-wrap{
      display:flex;
      gap:24px;
      justify-content:space-between;
      align-items:flex-end;
      border-bottom:1px solid rgba(20,82,41,.10);
      padding-bottom:40px;
      flex-wrap:wrap;
    }
    .kicker{
      color:var(--primary);
      font-weight:800;
      letter-spacing:.2em;
      text-transform:uppercase;
      font-size:11px;
      margin-bottom:12px;
    }
    .heading-xl{
      font-size:44px;
      font-weight:900;
      letter-spacing:-1px;
      color:var(--charcoal);
    }
    .muted{
      font-size:14px;
      font-weight:600;
      line-height:1.7;
      max-width:340px;
    }

    /* Services Grid */
    .services{
      padding:0 24px 36px;
    }
    .grid-3{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:32px;
    }
    .service-card{
      display:flex;
      flex-direction:column;
      border:1px solid rgba(20,82,41,.10);
      border-radius:16px;
      overflow:hidden;
      background:#fff;
      transition:.25s;
    }
    .service-card:hover{transform:translateY(-8px);}
    .service-img{
      width:100%;
      aspect-ratio:4/3;
      overflow:hidden;
    }
    .service-img .service-card-image{
      width:100%;
      height:100%;
      background-size:cover;
      background-position:center;
      transition:transform .5s ease;
    }
    .service-card:hover .service-card-image{transform:scale(1.08);}
    .service-body{
      padding:32px;
      border-top:1px solid rgba(20,82,41,.20);
      display:flex;
      flex-direction:column;
    }
    .service-body h4{
      font-size:20px;
      font-weight:800;
      margin-bottom:12px;
      color: var(--primary);
    }
    .service-body p{
      font-size:14px;
      line-height:1.7;
      margin-bottom:24px;
    }
    .service-body a{
      color:var(--primary);
      font-weight:800;
      font-size:14px;
      text-decoration:none;
      display:flex;
      align-items:center;
      gap:8px;
      transition:.2s;
    }
    .service-body a:hover{gap:12px;}

    /* Why Choose Us */
    .alt-section{
      background:#f8f9fa;
      padding:96px 24px;
    }
    .grid-adv{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:40px;
    }
    .adv-card{
      background:#fff;
      padding:40px;
      border-radius:24px;
      border:1px solid rgba(20,82,41,.05);
      transition:.25s;
    }
    .adv-card:hover{
      border-color:rgba(20,82,41,.20);
    }
    .adv-icon{
      width:48px;height:48px;
      background:rgba(20,82,41,.10);
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--primary);
      margin-bottom:24px;
      transition:.2s;
      font-size:18px;
    }
    .adv-card:hover .adv-icon{
      background:var(--primary);
      color:#fff;
    }
    .adv-card h4{
      font-size:20px;
      font-weight:900;
      margin-bottom:12px;
    }
    .adv-card p{
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .adv-cta{
      background:var(--primary);
      color:#fff;
      padding:40px;
      border-radius:24px;
      text-align:center;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
    }
    .adv-cta h4{
      font-size:24px;
      font-weight:900;
      margin-bottom:16px;
      line-height:1.2;
    }
    .btn-white{
      background:#fff;
      color:var(--primary);
      border:none;
      padding:12px 32px;
      border-radius:16px;
      font-weight:800;
      cursor:pointer;
    }

    /* CTA */
    .cta-section{
      background:#fff;
      padding:48px 0px;
    }
    .cta-box{
      background:linear-gradient(to right, var(--primary), rgba(0, 0, 0, 0.8), transparent),
  url("../images/1768565105.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;;
      border-radius:24px;
      overflow:hidden;
      position:relative;
      padding:80px 40px;
      text-align:center;
      color:#fff;
    }
    .cta-box h2{
      font-size:34px;
      font-weight:900;
      margin-bottom:24px;
      line-height:1.1;
    }
    .cta-box p{
      opacity:.85;
      font-size:18px;
      font-weight:600;
      max-width:600px;
      margin:0 auto 40px;
    }
    .cta-buttons{
      display:flex;
      gap:16px;
      justify-content:center;
      flex-wrap:wrap;
    }
    .btn-cta{
      padding:16px 40px;
      border-radius:16px;
      font-weight:900;
      font-size:18px;
      cursor:pointer;
      border:2px solid transparent;
      transition:.2s;
    }
    .btn-cta.primary{
      background:#fff;
      color:var(--primary);
    }
    .btn-cta.secondary{
      background:transparent;
      color:#fff;
      border-color:rgba(255,255,255,.40);
    }
    .btn-cta.secondary:hover{background:rgba(255,255,255,.10);}

    /* Footer */
    footer{
      background:var(--charcoal);
      color:#fff;
      padding:80px 24px 40px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:48px;
      margin-bottom:64px;
    }
    .footer-logo{
      width:32px;height:32px;
      background:var(--primary);
      border-radius:8px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:14px;
    }
    .footer-title{
      font-size:18px;
      font-weight:900;
    }
    .footer-title span{font-weight:300;}
    .footer-text{
      color:#9ca3af;
      font-size:14px;
      line-height:1.7;
      margin-bottom:24px;
    }
    .social a{
      width:40px;height:40px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.10);
      display:flex;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      color:#fff;
      transition:.2s;
    }
    .social a:hover{background:var(--primary);}
    .footer-heading{
      font-weight:900;
      margin-bottom:24px;
      font-size:14px;
      text-transform:uppercase;
      letter-spacing:.2em;
      color:var(--primary);
    }
    .footer-links{
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    .footer-links a{
      color:#9ca3af;
      text-decoration:none;
      transition:.2s;
      font-size:14px;
    }
    .footer-links a:hover{color:#fff;}
    .footer-contact{
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:16px;
      color:#9ca3af;
      font-size:14px;
    }
    .footer-contact li{
      display:flex;
      gap:12px;
      align-items:center;
    }
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.05);
      padding-top:32px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      flex-wrap:wrap;
      gap:16px;
      color:#6b7280;
      font-size:12px;
    }
    .footer-bottom a{
      color:#6b7280;
      text-decoration:none;
      transition:.2s;
    }
    .footer-bottom a:hover{color:#fff;}

    /* Responsive */
    @media(max-width:1024px){
      .grid-3{grid-template-columns:repeat(2,1fr);}
      .grid-adv{grid-template-columns:repeat(2,1fr);}
      .footer-grid{grid-template-columns:repeat(2,1fr);}

      .hero h1{font-size:48px;}
      .cta-box h2{font-size:32px;}
    }
    @media(max-width:640px){
      .grid-3{grid-template-columns:1fr;}
      .grid-adv{grid-template-columns:1fr;}
      .footer-grid{grid-template-columns:1fr;}
      .btn-primary{display:none;}
      .hero h1{font-size:38px;}
      .cta-box{padding:60px 20px;}
      .cta-box h2{font-size:26px;}
    }



.hero-slide {
  height: 520px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-60px);
  animation: fadeSlideLeft 1s ease forwards;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.95;
   opacity: 0;
  transform: translateX(-60px);
  animation: fadeSlideLeft 1.2s ease forwards;
  animation-delay: 0.2s;
}
@keyframes fadeSlideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ffffff;
  color: #000;
}

/* ✅ Right Side Line Dots */
.hero-slider .owl-dots {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.hero-slider .owl-dots .owl-dot span {
  width: 7px;
  height: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  transition: 0.3s ease;
}

.hero-slider .owl-dots .owl-dot.active span {
  height: 35px;
  background: var(--primary);
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .hero-slide {
    height: 420px;
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-slider .owl-dots {
    right: 10px;
  }
}
/* About / Mission Section */
.about-section{
  background:#fff;
  padding: 70px 0px;
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.about-image-wrap{
  position:relative;
}
.about-image{
  aspect-ratio:4/5;
  border-radius:24px;
  overflow:hidden;
  border:8px solid var(--bg-light);
}
.about-image .bg{
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
}
.about-badge{
  position:absolute;
  right:-24px;
  bottom:-24px;
  background:var(--primary);
  color:#fff;
  padding:32px;
  border-radius:24px;
  max-width:240px;
}
.about-badge h3{
  font-size:36px;
  font-weight:900;
  margin-bottom:6px;
}
.about-badge p{
  font-size:12px;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
  opacity:.85;
  line-height:1.4;
}
.about-content h3{
  color:var(--primary);
  font-weight:900;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-size:11px;
  margin-bottom:12px;
}
.about-content h2{
  font-size:44px;
  font-weight:900;
  line-height:1.2;
  margin-bottom:24px;
  letter-spacing:-1px;
}
.about-content p{
  font-size:18px;
  font-weight:300;
  line-height:1.7;
  margin-bottom:16px;
}
.about-btn{
  display:inline-block;
  margin-top:10px;
  padding:14px 32px;
  border:2px solid var(--primary);
  border-radius:16px;
  font-weight:900;
  color:var(--primary);
  text-decoration:none;
  transition:.2s;
}
.about-btn:hover{
  background:var(--primary);
  color:#fff;
}

/* Responsive About */
@media(max-width:1024px){
  .about-grid{grid-template-columns:1fr; gap:40px;}
  .about-badge{display:none;}
  .about-content h2{font-size:38px;}
}
/* ============================
   Property Selling Section
============================ */

.property-selling-section {
  padding: 100px 20px;
  background: rgba(245, 247, 255, 0.6);
}

.property-selling-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.property-selling-content {
  order: 2;
}

.property-selling-title {
  font-size: 40px;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 18px;
}

.property-selling-desc {
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Offer Box */
.property-selling-box {
  background: rgba(0, 123, 255, 0.05);
  border: 1px solid rgba(0, 123, 255, 0.12);
  padding: 30px;
  border-radius: 16px;
}

.property-selling-box-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.property-selling-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.property-selling-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.property-selling-list li i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}

/* Right Image */
.property-selling-image-wrap {
  order: 1;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  height: 380px;
  box-shadow: 0px 18px 45px rgba(0, 0, 0, 0.12);
}

.property-selling-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Responsive Layout */
@media (min-width: 992px) {
  .property-selling-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .property-selling-content {
    order: 1;
  }

  .property-selling-image-wrap {
    order: 2;
    height: 420px;
  }
}

@media (max-width: 600px) {
  .property-selling-title {
    font-size: 30px;
  }

  .property-selling-desc {
    font-size: 16px;
  }

  .property-selling-box {
    padding: 22px;
  }
}


/* Hero */
    .bread-sec{
      position:relative;
      height:300px;
      width:100%;
      display:flex;
      flex-direction:column;
      justify-content:center;
      overflow:hidden;
    }
    .bread-bg{
      position:absolute;
      inset:0;
      background-size:cover;
      background-position:center;
    }
    .bread-content{
      position:relative;
      z-index:2;
    }

    /* Breadcrumb */
    .breadcrumb{
      display:flex;
      align-items:center;
      gap:8px;
      margin-bottom:24px;
      font-size:14px;
    }
    .breadcrumb a{
      color:rgba(255,255,255,.8);
      text-decoration:none;
      font-weight:500;
    }
    .breadcrumb a:hover{color:#fff;}
    .breadcrumb .sep{
      color:rgba(255,255,255,.4);
    }
    .breadcrumb span{
      color:#fff;
      font-weight:500;
    }

    .bread-content h1{
      font-size:56px;
      line-height:1.15;
      font-weight:800;
      color:#fff;
      max-width:850px;
    }
    .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

    /* Intro Grid */
    .grid-2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:64px;
      align-items:center;
    }
    .tag{
      display:inline-block;
      padding:6px 14px;
      border-radius:var(--radius-full);
      background:rgba(30,82,47,.1);
      color:var(--primary);
      font-size:12px;
      font-weight:800;
      letter-spacing:1px;
      text-transform:uppercase;
      margin-bottom:18px;
    }
    .intro h2{
      font-size:40px;
      font-weight:800;
      line-height:1.2;
      margin-bottom:18px;
    }
    .intro p{
      font-size:18px;
      color:var(--text-muted);
      line-height:1.7;
      margin-bottom:14px;
    }

    .img-card{
      position:relative;
    }
    .img-box{
      width:100%;
      aspect-ratio:4/3;
      border-radius:24px;
      background-size:cover;
      background-position:center;
      box-shadow:0 20px 50px rgba(0,0,0,.15);
    }
    .experience-badge{
      position:absolute;
      bottom:-32px;
      left:-32px;
      background:var(--primary);
      padding:32px;
      border-radius:24px;
      color:#fff;
      display:none;
    }
    .experience-badge p:first-child{
      font-size:42px;
      font-weight:800;
      margin-bottom:6px;
    }
    .experience-badge p:last-child{
      font-size:14px;
      opacity:.8;
      font-weight:500;
    }

    /* Story */
    .story{
      text-align:center;
      max-width:900px;
      margin:0 auto;
    }
    .story h2{
      font-size:32px;
      font-weight:800;
      margin-bottom:24px;
    }
    .story p{
      font-size:18px;
      color:var(--text-muted);
      font-style:italic;
      line-height:1.8;
      margin-bottom:14px;
    }

    /* Mission / Vision */
    .cards-2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:32px;
    }
    .info-card{
      padding:40px;
      border-radius:24px;
      border:2px solid rgba(30,82,47,.2);
      background:var(--muted-grey);
      transition:var(--transition);
    }
    .info-card:hover{
      border-color:var(--primary);
    }
    .icon-box{
      width:56px;height:56px;
      background:var(--primary);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:16px;
      margin-bottom:22px;
      font-size:22px;
    }
    .info-card h3{
      font-size:24px;
      font-weight:800;
      margin-bottom:14px;
    }
    .info-card p{
      color:var(--text-muted);
      line-height:1.7;
    }

    /* Core Values */
    .section-title{
      text-align:center;
      margin-bottom:64px;
    }
    .section-title h2{
      font-size:32px;
      font-weight:800;
      margin-bottom:14px;
    }
    .divider{
      width:80px;
      height:4px;
      background:var(--primary);
      margin:0 auto;
      border-radius:4px;
    }
    .grid-3{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:48px;
    }
    .value-card{
      text-align:center;
    }
    .value-icon{
      width:80px;
      height:80px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:0 auto 22px;
      background:#fff;
      box-shadow:0 10px 25px rgba(0,0,0,.08);
      transition:var(--transition);
      font-size:34px;
      color:var(--primary);
    }
    .value-card:hover .value-icon{
      background:var(--primary);
      color:#fff;
    }
    .value-card h4{
      font-size:20px;
      font-weight:800;
      margin-bottom:10px;
    }
    .value-card p{
      color:var(--text-muted);
      font-size:15px;
      line-height:1.6;
    }

    /* Why Choose Us */
    .grid-5{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:18px;
    }
    .mini-card{
      display:flex;
      flex-direction:column;
      gap:14px;
      padding:22px;
      border-radius:16px;
      background:var(--muted-grey);
      border:1px solid #e2e8f0;
    }
    .mini-card i{
      color:var(--primary);
      font-size:28px;
    }
    .mini-card h5{
      font-weight:800;
      font-size:15px;
    }
    .mini-card p{
      font-size:13px;
      color:var(--text-muted);
      line-height:1.5;
    }

    /* Team Section */
    .team-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:48px;
      flex-wrap:wrap;
    }
    .team-head h2{
      font-size:32px;
      font-weight:800;
      margin-bottom:10px;
    }
    .team-head p{
      color:var(--text-muted);
      line-height:1.7;
      max-width:650px;
    }
    .join-btn{
      background:none;
      border:none;
      color:var(--primary);
      font-weight:800;
      display:flex;
      align-items:center;
      gap:10px;
      cursor:pointer;
      font-size:15px;
    }
    .join-btn i{
      transition:var(--transition);
    }
    .join-btn:hover i{
      transform:translateX(5px);
    }

    .grid-4{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:28px;
    }
    .team-card{
      background:var(--background-light);
      padding:16px;
      border-radius:24px;
      box-shadow:0 2px 10px rgba(0,0,0,.06);
      transition:var(--transition);
    }
    .team-card:hover{
      box-shadow:0 25px 55px rgba(0,0,0,.15);
    }
    .team-img{
      position:relative;
      aspect-ratio:1/1;
      border-radius:16px;
      overflow:hidden;
      background:var(--muted-grey);
      margin-bottom:14px;
    }
    .team-img .bg{
      position:absolute;
      inset:0;
      background-size:cover;
      background-position:center;
      filter:grayscale(100%);
      transition:var(--transition);
    }
    .team-card:hover .team-img .bg{
      filter:grayscale(0%);
      transform:scale(1.03);
    }
    .team-card h6{
      font-size:18px;
      font-weight:800;
      margin-bottom:6px;
    }
    .role{
      color:var(--primary);
      font-size:13px;
      font-weight:600;
      margin-bottom:10px;
    }
    .social{
      display:flex;
      gap:14px;
      color:#94a3b8;
    }
    .social i{
      cursor:pointer;
      transition:var(--transition);
    }
    .social i:hover{color:var(--primary);}


    /* Responsive */
    @media(max-width:1100px){
      .grid-5{grid-template-columns:repeat(2,1fr);}
      .grid-4{grid-template-columns:repeat(2,1fr);}
      .grid-3{grid-template-columns:1fr;}
      .cards-2{grid-template-columns:1fr;}
      .grid-2{grid-template-columns:1fr;}
      .bread-sec h1{font-size:42px;}
    }

    @media(max-width:768px){
      .nav{display:none;}
      .footer-grid{grid-template-columns:1fr;}
      .experience-badge{display:none;}
      .grid-5{grid-template-columns:1fr;}
    }

    @media(min-width:768px){
      .experience-badge{display:block;}
    }
    .section
    {padding: 80px 0px!important;}

    #backToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  font-size: 18px;
  border: none;
  outline: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
  transition: 0.3s;
}

#backToTop:hover {
  background: #444;
}
/* Zig-Zag Services Layout */
.zigzag-wrap{
  display:flex;
  flex-direction:column;
  gap:40px;
  margin-top:50px;
}

/* Row */
.zigzag-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* Image Box */
.zigzag-img{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 22px 50px rgba(0,0,0,.10);
}
.zigzag-img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:var(--transition);
}
.zigzag-row:hover .zigzag-img img{
  transform:scale(1.03);
}

/* Content */
.zigzag-content h3{
  font-size:34px;
  font-weight:800;
  margin-bottom:14px;
}

.zigzag-desc{
  font-size:16px;
  color:var(--text-muted);
  line-height:1.8;
  margin-bottom:24px;
  max-width:520px;
}

/* Offer Box */
.offer-box{
  background:#eef3ef;
  border:1px solid rgba(30,82,47,.12);
  border-radius:18px;
  padding:22px 24px;
  max-width:540px;
}

.offer-box h4{
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--primary);
  margin-bottom:14px;
}

.offer-box ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.offer-box li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:#334155;
  line-height:1.6;
}

.offer-box li i{
  color:var(--primary);
  font-size:16px;
  margin-top:2px;
}

/* Zig-Zag Reverse (Image Right) */
.zigzag-row.reverse .zigzag-img{
  order:2;
}
.zigzag-row.reverse .zigzag-content{
  order:1;
}

/* Responsive */
@media(max-width:1024px){
  .zigzag-row{
    grid-template-columns:1fr;
    gap:30px;
  }
  .zigzag-row.reverse .zigzag-img,
  .zigzag-row.reverse .zigzag-content{
    order:unset;
  }
  .zigzag-content h3{
    font-size:28px;
  }
  .zigzag-desc{
    max-width:100%;
  }
  .offer-box{
    max-width:100%;
  }
}

/* Why Our Services Stand Out */
#services-standout{
  background: rgba(244,246,249,.55);
}

.standout-box{
  display:flex;
  align-items:center;
  gap:28px;
  background: var(--background-light);
  border: 1px solid rgba(30,82,47,.18);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 20px 45px rgba(0,0,0,.08);
  overflow:hidden;
  position:relative;
}

.standout-box::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(30,82,47,.07), transparent);
  pointer-events:none;
}

.standout-icon{
  width:74px;
  height:74px;
  border-radius: 20px;
  background: rgba(30,82,47,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--primary);
  font-size: 30px;
  flex-shrink:0;
  position:relative;
  z-index:2;
}

.standout-content{
  position:relative;
  z-index:2;
}

.standout-content h2{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.standout-content p{
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 900px;
}

.standout-points{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.standout-point{
  display:flex;
  align-items:center;
  gap:10px;
  background: rgba(30,82,47,.07);
  border: 1px solid rgba(30,82,47,.12);
  padding: 10px 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  color: #334155;
  font-weight: 600;
}

.standout-point i{
  color: var(--primary);
}

/* Responsive */
@media(max-width:768px){
  .standout-box{
    flex-direction:column;
    align-items:flex-start;
    padding: 24px;
  }

  .standout-content h2{
    font-size: 26px;
  }

  .standout-point{
    width:100%;
    border-radius: 14px;
  }
}

/* Property Gallery */
#property-gallery{
  background: var(--background-light);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  margin-top:50px;
}

.gallery-item{
  position:relative;
  display:block;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.gallery-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:var(--transition);
}

.gallery-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.35);
  opacity:0;
  transition:var(--transition);
}

.gallery-overlay i{
  width:54px;
  height:54px;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary);
  font-size:18px;
  transform:scale(.9);
  transition:var(--transition);
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
}

.gallery-item:hover .gallery-overlay i{
  transform:scale(1);
}

/* Responsive */
@media(max-width:1100px){
  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .gallery-grid{
    grid-template-columns:1fr;
  }
  .gallery-item img{
    height:220px;
  }
}
/* Contact Us */
#contact-us{
  background: rgba(244,246,249,.55);
}

.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:30px;
  margin-top:50px;
  align-items:stretch;
}

/* Left Info Box */
.contact-info{
  background: var(--background-light);
  border: 1px solid rgba(30,82,47,.15);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 20px 45px rgba(0,0,0,.08);
  position:relative;
  overflow:hidden;
}

.contact-info::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(30,82,47,.08), transparent);
  pointer-events:none;
}

.contact-info h3{
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  position:relative;
  z-index:2;
}

.contact-desc{
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 22px;
  position:relative;
  z-index:2;
}

.contact-list{
  display:flex;
  flex-direction:column;
  gap:18px;
  position:relative;
  z-index:2;
}

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

.contact-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  background: rgba(30,82,47,.12);
  color: var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size: 18px;
}

.contact-text h4{
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-text p{
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Social */
.contact-social{
  display:flex;
  gap:12px;
  margin-top:24px;
  position:relative;
  z-index:2;
}

.social-circle{
  width:42px;
  height:42px;
  border-radius:50%;
  background: rgba(30,82,47,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--primary);
  text-decoration:none;
  transition: var(--transition);
}

.social-circle:hover{
  background: var(--primary);
  color:#fff;
}

/* Right Form Card */
.contact-form-card{
  background: var(--background-light);
  border: 1px solid rgba(30,82,47,.15);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.contact-form-card h3{
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-desc{
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Form Styling */
.contact-form{
  width:100%;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
  margin-bottom:16px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-group label{
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  outline:none;
  font-size: 14px;
  transition: var(--transition);
  font-family: "Manrope", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color: rgba(30,82,47,.55);
  box-shadow: 0 0 0 4px rgba(30,82,47,.12);
}

/* Button */
.btn-submit{
  margin-top: 16px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 15px;
}

/* Responsive */
@media(max-width:1024px){
  .contact-wrap{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .form-grid{
    grid-template-columns:1fr;
  }
  .contact-info,
  .contact-form-card{
    padding:24px;
  }
}
.logo-box img{
  width:30px;
}
