:root {
    /* Color Palette */
    --color-primary: #2E8B57;
    --color-primary-dark: #2E8B57;
    --color-secondary: #2E8B57;
    --color-secondary-dark: #2E8B57;
    --color-accent: #FF6F00;
    --color-dark: #1A1A2E;
    --color-dark-alt: #16213E;
    --color-light: #FFFFFF;
    --color-gray-100: #F5F7FA;
    --color-gray-200: #E4E7EB;
    --color-gray-300: #CBD2D9;
    --color-gray-700: #3E4C59;
    --color-gray-800: #2D3748;
    --color-success: #10B981;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-dark);
    line-height: 1.6;
    background: var(--color-light);
    overflow-x: hidden;
}

.heading_hp h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  position: relative;
  letter-spacing: 0px;
}


.heading_hp h6 {
  font-weight: 400;
  color: var(--main-color);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
}

.heading_hp p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 25px;
}

.heading_hp.text_white h2,
.heading_hp.text_white h6,
.heading_hp.text_white h5,
.heading_hp.text_white p {
  color: var(--white-color);
}

.main_menu_hdr{
    border-top: 1px solid var(--color-primary);
}
/* Hero Banner Section */
.hero-banner {
    color: var(--color-light);
    position: absolute;
    padding-top: 0px;
    z-index: 1;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    background: rgb(46 139 87 / 20%);
    border: 2px solid #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgb(46 139 87 / 30%);
    }

    50% {
        box-shadow: 0 0 30px rgb(46 139 87 / 50%);
    }
}

.text-highlight {
    color: var(--color-primary);
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--color-primary);
    opacity: 0.3;
    z-index: -1;
}

.stats-row {
    margin-top: 2rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-300);
    margin-top: 0.5rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-property-img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-property-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}



/* Search Banner Section */
.search-banner-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding-bottom: 60px;
}

.search-card {
    background: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
}

.search-tabs {
    border-bottom: none;
    background: var(--color-gray-100);
    padding: 0;
    margin: 0;
}

.search-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 1.25rem 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-gray-700);
    transition: all var(--transition-fast);
    border-bottom: 3px solid transparent;
}

.search-tabs .nav-link:hover {
    background: rgba(253, 216, 53, 0.1);
    color: var(--color-dark);
}

.search-tabs .nav-link.active {
    background: var(--color-light);
    color: var(--color-dark);
    border-bottom-color: var(--color-primary);
}

.search-form .form-label {
    font-size: 0.875rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.search-form .form-control,
.search-form .form-select {
    border: 2px solid var(--color-gray-200);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(253, 216, 53, 0.1);
}

.btn-search {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    color: var(--color-dark);
    font-weight: 700;
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 216, 53, 0.4);
}

/* Alphabet Navigation */
.alphabet-nav {
    padding: 3rem 0;
    background: var(--color-gray-100);
}

.alphabet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.alphabet-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: lowercase;
    color: var(--color-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alphabet-item:hover {
    background: var(--color-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-gray-700);
}

/* Alphabet Navigation */
.alphabet-nav {
    padding: 3rem 0;
    background: var(--color-gray-100);
}

.alphabet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.alphabet-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: lowercase;
    color: var(--color-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alphabet-item:hover {
    background: var(--color-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-gray-700);
}




.social_links {
    list-style: none;
    padding-left: 0;
    display: flex;
    margin-top: 20px;
    justify-content: center;
}
.social_links li {
    margin-right: 5px;
}
.social_links li a {
    color: #ffffff;
    padding: 8px;
    display: flex;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 22px;
    line-height: 1;
    background: var(--color-primary);
    border: 1px solid #fff;
    align-items: center;
    justify-content: center;
}

.banner_sec {
  width: 100%;
  background-size: cover;
  position: relative;
  background: #FFF8FB;
}

 .slide .slide__img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(123deg, var(--color-success) 50%, #544200);
    opacity: .9;
}
.elementor-shape-fill{
  fill:#fff;
}
.right_img{width: 100%}
.right_img img{width: 100%}


  .slider,
  .slide {
    height: 700px;
  }


.slide {
  position: relative;
  transition: 1s;
}

.slide .slide__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.slide .slide__img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
  object-fit: cover;
}

.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.slide .slide__content.slide__content__left {
  left: 0%;
  transform: translate(0%, -50%);
}

.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}

.slide .slide__content--headings {
  color: #FFF;
}
.welcome_to{
  font-size: 18px;
  color: #fff;
}
.welcome_to span{
  color: var(--main-color);
}
.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
  letter-spacing: 0px;
}

.slide .slide__content--headings h5 {
  margin: 10px 0;
}

.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white-color);
}

.slide .slide__content--headings .title {
  font-size: 50px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--white-color);
  text-shadow: 1px 1px 10px #000;
}
.slide .slide__content--headings h4 {
  color: var(--black-color);
  text-transform: uppercase;
  font-weight: 400;
}

.slide .slide__content--headings .title span {
  color: var(--green-color);
}
.slide__content--headings {
  position: relative;
  width: 100%;
}
.slidebottomleft {
  animation: fadeInUp 1.5s both 1.5s;
}
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  top: 50%;
  right: 5%;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 50px;
  transform: translate(0%, -50%);
}
.slick-dots li {
  position: relative;
  display: flex;
  margin: 0px;
  padding: 0;
  cursor: pointer;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
  opacity: 1;
}

.stick-dots .slick-dots li {
  height: 50px;
  width: 50px;
  padding: 0px 5px;
}

.stick-dots .slick-dots li button {  
  color: #000;
  background: none;
  border: none;
  margin: 0px 0px;
  font-size: 20px;
  font-family: var(--text-font);
  position: relative;
  width: 25px;
  height: 25px;
}
.slick-dots li.slick-active button {
  color: var(--green-color);
}
.slick-dots li.slick-active button::before{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: var(--green-color);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.slick-dots li.slick-active button::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--green-color);
  width: 100%;
  height: 2px;
  border-radius: 50%;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
  opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
  /* color: transparent;
  opacity: 1;
  width: 20px;
  height: 2px;
  border-radius: 0;
  background: #D9D9D9; */
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}


.slider .slide.slick-active {
  animation: Slick-FastSwipeIn 1s both;
}

/* ==== Slider Image Transition === */
@keyframes Slick-FastSwipeIn {
  0% {
    transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
  }

  100% {
    transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
  }
}

@-webkit-keyframes ProgressDots {
  from {
    width: 0px;
  }

  to {
    width: 100%;
  }
}

@keyframes ProgressDots {
  from {
    width: 0px;
  }

  to {
    width: 100%;
  }
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}

.zoomInImage {
  -webkit-animation-name: zoomInImage;
  animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }

  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }

  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
  animation-name: zoomOutImage;
  transition: 1s;
}

.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 1;
}

.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}

.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}

/* .slick-nav i:before,
.slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}

.slick-nav i:before {
  transform: rotate(-40deg);
}

.slick-nav i:after {
  transform: rotate(40deg);
} */

.slick-nav:before,
.slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}

.slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
  animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
  animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
  animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
  animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@-webkit-keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }

  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }

  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@-webkit-keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@-webkit-keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}



/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--color-light);
    border-top:1px solid #ccc;
}

.service-card {
    background: var(--color-light);
    padding: 2rem 1rem;
    border-radius: 20px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--color-gray-200);
    height: 100%;
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    color: var(--color-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.service-card p {
    color: var(--color-gray-700);
    font-size: 16px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-section .row {
    position: relative;
    z-index: 2;
}

.cta-avatar {
    position: relative;
    width: 120px;
    height: 120px;
}

.cta-avatar img {
    width: 100%;
    height: 100%;
    border: 4px solid var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--color-primary);
    color: var(--color-light);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.cta-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-section .lead {
    opacity: 0.9;
}

.btn-cta {
    background: var(--color-primary);
    color: var(--color-light);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--color-gray-100);
}

.testimonial-card {
    background: var(--color-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 2rem;
    font-style: italic;
}
.tsti_padding{
    padding: 0 10px;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-light);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--color-dark);
}

.author-title {
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
}

.contact-info {
    color: var(--color-light);
}

.contact-info h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
}

.contact-info .lead {
    opacity: 0.9;
}

.contact-method {
    color: var(--color-light);
}

.method-icon {
    font-size: 2rem;
    color: var(--color-light);
}

.method-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.method-value {
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-form-wrapper {
    background: var(--color-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid var(--color-gray-200);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(253, 216, 53, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(253, 216, 53, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(253, 216, 53, 0.4);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--color-gray-200);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom p {
    color: var(--color-gray-300);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-tabs .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .alphabet-grid {
        grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    }

    .search-tabs .nav-link {
        padding: 0.75rem 1rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }
}

.real_solution_sec{
    padding: 50px 0;
}

.inner_banner_sec {
  padding: 100px 0;
  position: relative;

}
.inner_banner_sec::before {
      content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(123deg, var(--color-success) 50%, #544200);
    opacity: .8;
}
.inner_banner_ontent {
  position: relative;
  z-index: 9
}
.inner_banner_ontent h1{
  font-size: 50px;
  font-family: var(--font-primary);
  color: #fff;
  margin-bottom: 0;
  font-weight: 700;
}
.inner_banner_ontent p{
  color: #000
}
.inr_latest:before{
  content: none;
}

.pt-100{
    padding-top: 100px;
}
.pb-100{
    padding-bottom: 100px;
}
.content-section h2{
    font-family: var(--font-primary);
    font-weight: 600;
}
.content-section h4{
    font-family: var(--font-primary);
}
.sell_fast{
    padding: 50px 0;
}
.sell_fast ul{
    list-style: none;
    display: flex;
    padding-left: 0;
}
.sell_fast ul li{
    font-size: 18px;
}
.sell_fast ul li:first-child{
    width: 40px;
    height: 40px;
    display: flex;
    flex-shrink: 0;
    background: linear-gradient(45deg, var(--color-success), #005237);
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
    color: #fff;
}
.font_call{
    font-size: 20px !important;
    margin-top: 20px;
    display: block;
}


.about_sec{
  padding: 100px 0;
   background: #f3f3f3;
}
.img_part{
  padding: 0px 0;
}
.img1{
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.img1 img{
  width: 100%;
}
.about_left_btm{
  position: absolute;
  right: 18%;
  bottom: -3%;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: linear-gradient(180deg, #FF3C00 0%, #f2295b 100%);
}

.about_left_right{
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: linear-gradient(180deg, #FF3C00 0%, #f2295b 100%);
  position: absolute;
  left: 6%;
  top: 0%;
  z-index: -1;
}

.img_part img{
  width: 100%;
}
.abt_ul{
  position: relative;
  list-style: none;
  padding-left: 0;
}
.abt_ul li{
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}
.abt_ul li:before{
  content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    left: 0;
    width: 25px;
    height: 25px;
    background: var(--main-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.about_sec_inr{
  padding: 50px 0;

}
.about_sec_miss{
  padding: 60px 0;
}
.about_vis_mis{
  border-radius: 15px;
  background: linear-gradient(213deg, #20a87e 0%, #444a0d 100%);
  backdrop-filter: blur(10px);
  padding: 30px;
  text-align: center;
  height: 100%
}
.about_vis_mis h4, .about_vis_mis p{
  color: #fff;
}

.mt_22{
  margin-top: -50px
}
.video_sec{
  padding: 100px 0;
}
.big_video{
  width: 100%;
  height: 500px;
}
.big_video video{
  width: 100%;
  height: 100%;
}


/* Featured Properties */
.featured-properties {
    padding: 4rem 0;
    background: var(--color-light);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.property-card {
    background: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: var(--color-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
}

.property-details {
    padding: 1.5rem;
}

.property-details h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.property-location {
    color: var(--color-gray-700);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.property-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.property-specs span {
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--color-gray-200);
}

.property-price {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-secondary);
}
.property-details p{
  margin-bottom: 5px;
}
.view_details{
  background: none;
  border: none;
  color: var(--color-success);

}