:root {
  /* --primary-green: #1a4d2e; */
  --primary-green: #E8201B;
  --secondary-blue: #1E293B;
  --primary-orange: #E8201B;
  --dark-bg: #2d2d2d;
  --linear-bottom: #59007A;
  --linear-top: #2A0065;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif !important;
  overflow-x: hidden;
}


.text-primary-green {
  color: var(--primary-green) !important;
}

.text-primary-blue {
  color: var(--secondary-blue) !important;
}

.bg-primary-green {
  background-color: var(--primary-green) !important;
}

.text-justify {
  text-align: justify;
}

.linear-text {
  background: linear-gradient(to top, var(--linear-bottom), var(--linear-top));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.brand-linear-text {
  background: linear-gradient(to top, #44f0f3, #f9f92b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.w-80 {
  @media (max-width:991px) {
    width: 90%;
  }
}

p {
  text-align: justify;
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  background-color: transparent;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.page-top-margin {
  margin-top: 80px;
}

.service-banner {
  position: relative;
  width: 100%;
  height: 350px;
  background-image: url("../images/Cities/cities-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:992px) {
  .service-banner {
    position: relative;
    width: 100%;
    height: 250px;
    background-image: url("../images/Cities/cities-bg.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.about-banner {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url("../images/banner/About-Us.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:992px) {
  .about-banner {
    position: relative;
    width: 100%;
    height: 250px;
    background-image: url("../images/banner/About-Us.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.contact-banner {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url("../images/banner/Contact-Us.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:992px) {
  .contact-banner {
    position: relative;
    width: 100%;
    height: 250px;
    background-image: url("../images/banner/Contact-Us.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.teams-banner {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url("../images/banner/Teams.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:992px) {
  .teams-banner {
    position: relative;
    width: 100%;
    height: 250px;
    background-image: url("../images/banner/Teams.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.banner-overlay {
  position: absolute;
  inset: 0;
  /* shorthand for top, right, bottom, left = 0 */
  background: rgba(0, 0, 0, 0.5);
  /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}



.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #000;
  color: white;
  padding: 8px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  position: relative;
}

.contact-btn:hover {
  background: #4b4848dc;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 77, 46, 0.3);
}

.properties-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #b8b8b8;
  color: rgb(0, 0, 0);
  padding: 10px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 20px;
  transition: all 0.3s;
  position: relative;
}

.properties-btn:hover {
  background: #000000;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 77, 46, 0.3);
}

/* Navbar Styles */
.navbar {
  padding: 10px 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-image {
  object-fit: contain;
  /* Ensures the logo fits inside */
}

.brand-text h1 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-text p {
  font-size: 0.95rem;
  margin: 0;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1.5rem !important;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

.contact-btn {
  background: var(--primary-green);
  color: white;
  padding: 8px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: #1a1a1a;
  color: white;
  transform: translateY(-2px);
}

.contact-btn svg {
  width: 18px;
  height: 18px;
}

/* Marquee Section */
.marquee-section {
  background: #f8f9fa;
  padding: 10px 0;
  overflow: hidden;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.partners-marquee .marquee-content {
  display: flex;
  animation: scroll 20s linear infinite;
  width: fit-content;
}


.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 40px;
  white-space: nowrap;
}

.marquee-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary-green);
  flex-shrink: 0;
}

.marquee-item span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* Properties Section */
.properties-section {
  padding: 40px 0;
  background: white;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.title-icon {
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 2px;
  margin-top: 12px;
  flex-shrink: 0;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  max-width: 500px;
  line-height: 1.3;
}

.view-all-btn {
  background: #f0f0f0;
  color: #333;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.3s;
}

.view-all-btn:hover {
  background: var(--primary-green);
  color: white;
  transform: translateX(5px);
}

.view-all-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Properties Section ---------- */
.properties-section {
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-header .title-wrapper h2 {
  font-size: 1.2rem;
  font-weight: 700;
}

.properties-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-green, #10b981);
}

.properties-btn .btn-icon-wrapper {
  margin-left: 8px;
  display: flex;
  align-items: center;
}

.property-card {
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.property-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.badge-rent {
  background: rgba(59, 130, 246, 0.9);
}

.badge-sale {
  background: rgba(16, 185, 129, 0.9);
}

.property-content {
  padding: 25px;
}

.property-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.property-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.property-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.property-size {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 0.95rem;
}

.property-size svg {
  width: 18px;
  height: 18px;
}

.know-more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-green, #10b981);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: gap 0.3s;
}

.know-more-btn:hover {
  gap: 10px;
}

.know-more-btn svg {
  width: 16px;
  height: 16px;
}

/* ---------- Swiper Arrows ---------- */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-green, #10b981);
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-green, #10b981);
  color: white;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

/* About Section */
.about-section {
  padding: 40px 0;
  background: white;
}

.about-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.about-title .title-icon {
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 2px;
  flex-shrink: 0;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.about-heading {
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  margin: 0;
}

.about-content {
  padding-left: 40px;
}

.about-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text strong {
  color: #333;
  font-weight: 600;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  /* background: var(--primary-green); */
  background: linear-gradient(to top, var(--linear-bottom), var(--linear-top));
  color: #fff;
  padding: 8px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  position: relative;
}

.about-btn:hover {
  /* background: #153d24; */
  background: linear-gradient(to top, var(--linear-bottom), var(--linear-top));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(26, 77, 46, 0.3);
}

.btn-icon-wrapper {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.about-btn:hover .btn-icon-wrapper {
  transform: translateX(5px);
}

.btn-icon-wrapper svg {
  width: 20px;
  height: 20px;
  /* color: var(--primary-green); */
  color: #000;
}

/* Hero Section */
.hero-section {
  padding: 120px 0 0px 0;
  min-height: 250px;
  display: flex;
  align-items: center;
}
@media (max-width:767px) {
  .hero-bg {
  background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), /* Overlay */
    url("../images/hero.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-content p {
  font-size: 1.15rem;
  color: #fff !important;
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 600px;
}
.properties-badge p {
  color: #fff !important;
  margin: 0;
}
}


.hero-content h2 {
 
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 600px;
}

.cta-btn {
  background: var(--primary-green);
  color: white;
  padding: 8px 35px;
  border-radius: 50p;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  font-size: 1rem;
}

.cta-btn:hover {
  background: #153d24;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 77, 46, 0.3);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
}

.properties-badge {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.properties-badge h3 {

  margin: 0;
  color: #333;
}

.properties-badge p {
 
  color: #666;
  margin: 0;
}

.team-avatars {
  display: flex;
  margin-left: 10px;
}

.team-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -15px;
  object-fit: cover;
}

.team-avatars img:first-child {
  margin-left: 0;
}
@media (max-width:991px) {
  .properties-badge {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.properties-badge h3 {
font-size: 12px;
  margin: 0;
 
}

.properties-badge p {
  font-size: 0.95rem;

  margin: 0;
}

.team-avatars {
  display: flex;
  margin-left: 10px;
}

.team-avatars img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -7px;
  object-fit: cover;
}

.team-avatars img:first-child {
  margin-left: 0;
}
}



@media (max-width:767px) {
.properties-badge p {
  color: #fff !important;
  margin: 0;
}
.properties-badge h3{
    color: #fff !important;
}
.hero-content h2{
    color: #fff !important;
}
}
/* Hero Image */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Off-canvas styles */
.offcanvas {
  background: white;
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
}

.offcanvas-body .nav-link {
  padding: 15px 0 !important;
  border-bottom: 1px solid #f5f5f5;
}

.mobile-contact-btn {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
 
.hero-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .desktop-nav {
    display: none;
  }
}
@media (max-width: 1199px) {
  .hero-content h2 {
   
    margin-bottom: 10px;
  }
}


@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-section {
    padding: 80px 0 40px 0;
  }

  

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .property-card {
    width: 300px;
  }

  .about-heading {
    font-size: 1.2rem;
  }

  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .about-text {
    font-size: 1rem;
  }
}



/* ---------- Real Stats Section ---------- */
.stats-section {
  background: linear-gradient(to top, var(--linear-bottom), var(--linear-top));
  border-radius: 8px;
  color: #fff;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex: 1;
  text-align: center;
}

.stat-box {
  padding: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 0.95rem;
  line-height: 1.3;
  color: #fff;
}

.pattern-img {
  height: 70px;
  width: auto;
  margin-left: 40px;
}

/* Tablet & Mobile: 2x2 layout */
@media (max-width: 992px) {
  .stats-section {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .pattern-img {
    display: none;
  }
}

@media (max-width: 576px) {
  .stat-number {
    font-size: 1.7rem;
  }
}

@media (max-width: 767px) {
  .stat-number {
    font-size: 1.7rem;
  }

  .stat-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
}

/* ---------- Services Section ---------- */
.sr-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.sr-header {
  text-align: center;
  margin-bottom: 10px;
}

.sr-badge {
  display: inline-block;
  background: #27ae60;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sr-main-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a252f;
  margin-bottom: 10px;
  line-height: 1.2;
}

.sr-subtitle {
  font-size: 18px;
  color: #5a6c7d;
  max-width: 600px;
  margin: 0 auto;
}

.sr-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sr-services-panel {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.sr-service-item {
  border-bottom: 1px solid #e8ecef;
  padding: 25px 0;
  transition: all 0.3s ease;
}

.sr-service-item:last-child {
  border-bottom: none;
}

.sr-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.sr-service-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a252f;
  transition: color 0.3s ease;
}

.sr-service-item:hover .sr-service-title {
  color: #3498db;
}

.sr-toggle-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background: #e8f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: #3498db;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  line-height: 0;
  padding: 0;
}

.sr-toggle-icon::before {
  display: block;
  margin-top: -2px;
}

.sr-service-item.sr-active .sr-toggle-icon {
  background: #3498db;
  color: white;
  transform: rotate(180deg);
  border-color: #3498db;
}

.sr-service-item:hover .sr-toggle-icon {
  background: #d5ebf5;
  border-color: #3498db;
}

.sr-service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.sr-service-item.sr-active .sr-service-content {
  max-height: 500px;
  padding-top: 20px;
}

.sr-service-description {
  color: #5a6c7d;
  font-size: 16px;
  line-height: 1.8;
}

.sr-image-panel {
  position: relative;
}

.sr-intro-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
}

.sr-intro-text {
  font-size: 16px;
  color: #5a6c7d;
  line-height: 1.8;
}

.sr-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.sr-property-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.sr-image-container:hover .sr-property-image {
  transform: scale(1.05);
}

.sr-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 30px;
  color: white;
}

.sr-overlay-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sr-overlay-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .sr-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sr-main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .sr-container {
    padding: 40px 15px;
  }

  .sr-main-title {
    font-size: 32px;
  }

  .sr-services-panel,
  .sr-intro-box {
    padding: 30px 25px;
  }

  .sr-service-title {
    font-size: 18px;
  }

  .sr-toggle-icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .sr-main-title {
    font-size: 1.2rem;
  }

  .sr-subtitle {
    font-size: 16px;
  }

  .sr-services-panel,
  .sr-intro-box {
    padding: 25px 20px;
  }

  .sr-service-item {
    padding: 20px 0;
  }
}

.why-choose-swiper .swiper-slide {
  border-right: 2px solid;
  /* thickness */
  border-image: repeating-linear-gradient(to bottom,
      #d2d0d0 0,
      #d2d0d0 10px,
      /* dash length */
      transparent 10px,
      transparent 20px
      /* gap length */
    ) 1;
}

.why-choose-swiper .swiper-slide .card-heading {
  color: var(--primary-green);
}

.form-control {
  border-radius: 10px;
  padding: 12px 15px;
  background-color: #f9f2f2;
  border: 1px solid #eee;
  font-size: 15px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #3a7bd5;
}

label {
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
}

textarea.form-control {
  resize: none;
  height: 120px;
}

.btn-send {
  background-color: #174d33;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 20px 0 20px 0px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.btn-send:hover {
  background-color: #0f3826;
}



.footer-logo {
  max-width: 150px;
}


.footer-top-text {
  font-size: 15px;
  color: #333;
}

.footer-container {
  color: white;
  background: linear-gradient(to top, var(--linear-bottom), var(--linear-top));
}

.footer-container .social-icons {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-container a {
  color: inherit;

}

.footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-list a {

  text-decoration: none;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
}

.mail-section input {
  font-size: 14px !important;
}

.footer-nav a {
  text-decoration: none;
}

.team-experts-section {
  padding: 60px 50px;
  background-color: #e8ebe8;
}


.section-heading {
  font-size: 16px;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 20px;
}

.section-heading::before {
  content: "";
  left: 0;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--primary-green);
  margin-right: 10px;
}

.team-label-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.team-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.team-section-description {
  color: #333;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.team-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.team-content-area {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 20px;
}

.team-bottom-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-member-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  aspect-ratio: 3/4;
}

.team-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      transparent 100%);
  padding: 18px;
  color: white;
}

.team-member-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
  line-height: 1.3;
}

.team-member-role {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
  opacity: 0.95;
  line-height: 1.3;
}

.team-contact-info {
  font-size: 10px;
}

.team-contact-info i {
  margin-right: 5px;
  width: 11px;
  font-size: 9px;
}

.team-contact-info div {
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  opacity: 0.95;
}

@media (max-width: 1200px) {
  .team-top-row {
    grid-template-columns: 1fr 1fr;
  }

  .team-bottom-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-experts-section {
    padding: 40px 20px;
  }

  .team-section-title {
    font-size: 1.2rem;
  }

  .team-top-row {
    grid-template-columns: 1fr;
  }

  .team-bottom-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .team-bottom-row {
    grid-template-columns: 1fr;
  }
}

.accordion-button.no-arrow::after {
  display: none;
}

.testimonial-user-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-section {
  background-image: linear-gradient(rgba(254, 253, 253, 0.3), rgba(255, 255, 255, 0.3)),
    url('../images/Testimonial-bg1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.testimonial-section .swiper-slide {
  background-color: white;
  border-radius: 8px;
}

.swiper-button-custom {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d3e0f699;
  color: var(--primary-green);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.swiper-button-custom:hover {
  background-color: var(--primary-green);
  color: white;
}

.service-area-section .tab-pane {
  background-color: #EFF2F799;
  padding: 20px;
}

.service-area-section .nav-pills .nav-item .nav-link {
  background-color: #8e8e8e99;
  color: rgb(0, 0, 0);
  margin-right: 15px;
  margin-bottom: 15px;
}

.service-area-section .nav-pills .nav-item .nav-link.active {
  background-color: var(--primary-green);
  color: white;

}


/* ---------- Home Steps Section ---------- */
.home-steps-header {
  text-align: center;
  margin-bottom: 10px;
}

.home-steps-subtitle {
  color: #6c757d;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-steps-subtitle::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--primary-green);
  display: inline-block;
}

.home-steps-main-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #212529;
  margin: 0;
}

.home-steps-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.home-steps-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.home-steps-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 18px;
}

.home-steps-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
  line-height: 1.4;
}

.home-steps-card-description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .home-steps-main-title {
    font-size: 1.2rem;
  }

  .home-steps-card {
    margin-bottom: 20px;
  }
}

/* ---------- Mortgage Section ---------- */
.mortgage-section-wrapper {
  background-color: #ffffff;
  padding: 30px 0;
}

.mortgage-section-icon {
  width: 12px;
  height: 12px;
  background-color: var(--primary-green);
  display: inline-block;
  margin-bottom: 15px;
}

.mortgage-section-subtitle {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mortgage-section-subtitle i {
  color: #d4a574;
  font-size: 16px;
}

.mortgage-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.3;
}

.mortgage-section-text {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.mortgage-section-cta-btn {
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  text-decoration: none;
}

.mortgage-section-cta-btn:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.mortgage-section-cta-btn i {
  background-color: white;
  color: #4caf50;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mortgage-section-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.mortgage-section-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .mortgage-section-wrapper {
    padding: 40px 0;
  }

  .mortgage-section-title {
    font-size: 1.2rem;
  }

  .mortgage-section-image-wrapper {
    margin-top: 30px;
    min-height: 300px;
  }
}

/* ---------- FAQ Section ---------- */
.faq-section-wrapper {
  background-color: #f8f9fa;
  padding: 30px 0;
}

.faq-section-icon {
  width: 12px;
  height: 12px;
  background-color: var(--primary-green);
  display: inline-block;
  margin-bottom: 15px;
}

.faq-section-label {
  color: #6c757d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.faq-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.3;
}

.faq-section-description {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.faq-accordion-wrapper {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-accordion-item {
  border: none;
  border-bottom: 1px solid #e5e7eb;
}

.faq-accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion-button {
  background-color: white;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 500;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
  position: relative;
}

.faq-accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #1a1a1a;
  box-shadow: none;
}

.faq-accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-accordion-button::after {
  content: "";
  width: 28px;
  height: 28px;
  background-color: var(--primary-green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  flex-shrink: 0;
  margin-left: auto;
}

.faq-accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq-accordion-body {
  padding: 0 25px 25px 25px;
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-accordion-collapse {
  border: none;
}

@media (max-width: 768px) {
  .faq-section-wrapper {
    padding: 40px 0;
  }

  .faq-section-title {
    font-size: 1.2rem;
  }

  .faq-accordion-wrapper {
    margin-top: 30px;
  }
}

.about-us-section {
  background: linear-gradient(135deg, #ffffff 0%, #e0f2e9 100%);
}

#contactSubmitButton {
  background: linear-gradient(to top, var(--linear-bottom), var(--linear-top));
  border-top-right-radius: 0px;
  border-bottom-right-radius: var(--bs-border-radius-xxl);
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: 0px !important;
}

.contact-img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

#enquiryModal .bg-opacity-75 {
  background-color: rgba(42, 0, 101,0.9) !important;
}

#enquiryModal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

#enquiryModal .form-control {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

#enquiryModal .form-control:focus {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.3);
}

#enquiryModal .btn-light:hover {
  background-color: #e9ecef;
  color: #145a32;
}

#enquiryModal .form-label {
  color: #fff;
}

/* Highlight active page link */
.navbar-nav .nav-link.active {
  color: var(--primary-orange) !important;
  font-weight: 600;
  position: relative;
}

.navbar-nav .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}


.testimonial-swiper .testimonial-desc {
  height: 150px;
}


/* Floating button styling */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 25%;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

@media (max-width: 767px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 15%;
    right: 20px;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .service-area-img {
    height: 350px;

  }
}


/* Back to Top Button Styles */
#backToTop {
  position: fixed;
  bottom: 5%;
  right: 20px;
  z-index: 99;
  background-color: var(--primary-orange);
  color: white;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  display: none;
  /* hidden by default */
}

#backToTop:hover {
  background-color: var(--primary-orange);
  transform: translateY(-3px);
}


.texas-whyChoose {
  background: linear-gradient(to right, #3693D9, #1B67A1);
}

.texas-whyChoose h6 {
  padding: 10px;
  background: linear-gradient(to right, #435a6b, #2c506b, #1b3f5a);
  color: white;
}

@media (max-width:767px) {
  .texas-whyChoose h6 {
    padding: 10px;
    background: linear-gradient(to right, #435a6b, #2c506b, #1b3f5a);
    color: white;
    font-size: 12px;
  }
}

@media (min-width:1200px) {

  .realtor-details,
  .features,
  .perks {
    min-height: 350px;
    padding: 15px;
  }
}

@media (max-width:1199px) {

  .realtor-details,
  .features,
  .perks {
    min-height: 400px;
    padding: 15px;
  }
}


.realtor-details {
  position: relative;
}

.realtor-alert {
  background-color: rgb(252, 223, 7);
  font-size: 13px;
  padding: 3px;

}

.restriction-alert {

  bottom: 5px;
  left: 25px;
  padding: 3px;
  display: block;
}

.perks p {
  font-size: 13px;

}

.grid-icon {
  transform: rotate(45deg);
}

.contact-banner-section {
  background: linear-gradient(to top, #f64040, #eb5d5b);
  color: #fff;
}



  /* Dropdown Styles */
    .nav-item.dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 80%;
      left: 0;
      background: white;
      border: none;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      padding: 12px 0;
      min-width: 200px;
      margin-top: 8px;
      z-index: 1000;
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    .dropdown-item {
      padding: 10px 24px;
      color: #333;
      text-decoration: none;
      display: block;
      transition: all 0.3s ease;
      font-size: 15px;
      font-weight: 500;
    }

    .dropdown-item:hover {
      background: linear-gradient(135deg, var(--primary-orange) 0%, #f44e4e 100%);
      color: white;
      padding-left: 28px;
    }

    .dropdown-item.active {
      color: var(--primary-orange);
      background: rgba(255, 107, 53, 0.1);
    }

    .nav-link.dropdown-toggle::after {
      content: '\f107';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      border: none;
      margin-left: 6px;
      font-size: 12px;
      transition: transform 0.3s ease;
    }

    .nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
      transform: rotate(180deg);
    }

    /* Active nav link styles */
    .navbar-nav .nav-link.active {
      color: var(--primary-orange) !important;
      font-weight: 600;
      position: relative;
    }

    .navbar-nav .nav-link.active::before {
      content: "";
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--primary-orange);
      border-radius: 2px;
    }

    /* Mobile dropdown styles - Always expanded */
    .offcanvas .dropdown-menu {
      position: static;
      box-shadow: none;
      border-radius: 8px;
      background: rgba(255, 107, 53, 0.05);
      margin: 8px 0;
      padding: 8px 0;
      display: block;
      opacity: 1;
      transform: none;
    }

    .offcanvas .dropdown-item {
      padding: 8px 24px;
      font-size: 14px;
    }

    .offcanvas .nav-link.dropdown-toggle::after {
      display: none;
    }

    .offcanvas .nav-link.dropdown-toggle {
      pointer-events: none;
      opacity: 0.7;
    }