@charset "UTF-8";

/********* Fonts **********/
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Montserrat",  sans-serif;
}

/******** Global Colors  *********/
:root { 
  --background-color: #ffffff; 
  --default-color: #323b3b; 
  --heading-color: #163535; 
  --accent-color: #2c467b; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

/******** Navbar Menu Colors ********/
:root {
  --nav-color: #323b3b;  /* The default color of the main navmenu links */
  --nav-hover-color: #2c467b; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #323b3b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2c467b; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/******** Classes For Background ********/
.ourbackground{
    background: linear-gradient(135deg, #ffffff 0%, #e7f0ff 30%, #b9ceff 60%, #7ca7ff 100%);
}
.light-background {
  --background-color: #eaf9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #081b12;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1f3028;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #077f46;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2a8f5f;
  --contrast-color: #ffffff;
}

/******** Smooth scroll *********/
:root {
  scroll-behavior: smooth;
}

/* Overall Section Styling */
.rera-section {
  background: #f4f6f8;
  padding: 60px 15px;
}

/* Container for all content */
.rera-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header Styling */
.rera-header {
  text-align: center;
  margin-bottom: 40px;
}

.rera-badge {
  display: inline-block;
  background: #2659a1;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
}

.rera-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #2f3b52;
  margin-top: 20px;
}

.rera-subtitle {
  font-size: 18px;
  color: #777;
  margin-top: 10px;
}

/* Card Container */
.rera-cards-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Card Styling */
.rera-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 48%; /* Default to 50% on larger screens (2 items in one row) */
  transition: all 0.3s ease-in-out;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.rera-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.rera-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rera-card-header h3 {
  font-size: 22px;
  color: #333;
  font-weight: 600;
}

.rera-card-icon {
  width: 30px;
  height: 30px;
}

/* Card Content Styling */
.rera-card-content {
  margin-top: 20px;
}

.rera-grid {
  display: grid;
  grid-template-columns: 1fr;  /* Change here for 1 item per row */
  gap: 20px;  /* Increased gap for spacing */
}

.rera-item {
  background: #f9fafc;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.rera-item:hover {
  background: #eef2f7;
  transform: translateY(-5px);
}

.rera-item span {
  font-size: 14px;
  color: #777;
  font-weight: 500;
}

.rera-item strong {
  font-size: 16px;
  color: #2f3b52;
  font-weight: bold;
}

/* Full-width items */
.rera-item.full {
  grid-column: 1 / -1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .rera-cards-container {
    flex-direction: column;
  }

  .rera-card {
    width: 100%; /* Full width for mobile */
  }

  .rera-title {
    font-size: 30px;
  }

  .rera-subtitle {
    font-size: 16px;
  }

  .rera-card-header h3 {
    font-size: 20px;
  }

  .rera-item {
    padding: 10px 15px;
  }
}


/********* Home BAnner & Contact Form *************/

  /* SECTION BACKGROUND */
  .enquiry-section {
      height: 100vh;
      background: url('assets/img/bg/hero.webp') center/cover no-repeat;
      position: relative;
      padding: 40px;
  }

  .enquiry-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(2px);
  }

  /* MAIN FLEX CONTAINER */
  .enquiry-content-box {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 60px;
      align-items: center;
      justify-content: space-between;
      height: 90%;
      padding-top: 50px;
      animation: fadeSlide 1s ease-out forwards;
  }

  /* LEFT CONTENT */
  .enquiry-left-content {
      width: 50%;
      color: #fff;
      animation: fadeInLeft 1.2s ease-out;
  }

  .enquiry-left-content h2 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      background: linear-gradient(90deg, #ffdd8a, #ffb703);
      -webkit-background-clip: text;
      color: transparent;
  }

  .enquiry-left-content p {
      font-size: 1.25rem;
      line-height: 1.8;
      opacity: 0.95;
  }

  /* GLASS FORM */
  .enquiry-glass-form {
      width: 40%;
      padding: 50px;
      border-radius: 20px;
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255,255,255,0.25);
      animation: fadeInRight 1.2s ease-out;
  }

  .form-title {
      text-align: center;
      color: #ffdd8a;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 30px;
  }

  /* INPUTS */
  .enquiry-input {
      width: 100%;
      padding: 16px 20px;
      background: rgba(255,255,255,0.92);
      border: none;
      border-radius: 50px;
      margin-bottom: 20px;
      font-size: 1rem;
      transition: .3s;
  }

  .enquiry-input:focus {
      outline: none;
      background: #fff;
      box-shadow: 0 0 12px rgba(255,200,100,0.6);
  }

  /* SUBMIT BUTTON */
  .enquiry-submit-btn {
      width: 100%;
      padding: 15px;
      border-radius: 50px;
      background: linear-gradient(135deg, #ffdd8a, #ffb703);
      color: #000;
      border: none;
      font-weight: 700;
      font-size: 1.2rem;
      transition: .3s;
  }

  .enquiry-submit-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(255,200,100,0.45);
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {

      .enquiry-content-box {
          flex-direction: column;
          text-align: center;
          gap: 30px;
      }

      .enquiry-left-content {
          display: none;
      }

      .enquiry-glass-form {
          width: 100%;
          padding: 30px;
      }
  }

  /* Tablet */
  @media (min-width: 768px) and (max-width: 1024px) {

      .enquiry-content-box {
          flex-direction: column;
          text-align: center;
      }

      .enquiry-left-content, .enquiry-glass-form {
          width: 100%;
      }

      .enquiry-glass-form {
          padding: 30px;
      }
  }

  /* ANIMATIONS */
  @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-30px); }
      to   { opacity: 1; transform: translateX(0); }
  }

  @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(30px); }
      to   { opacity: 1; transform: translateX(0); }
  }


/********  General Styling & Shared Classes  *********/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/********* Global Header *********/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 998;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/********** Navbar Menu ***************/
/******* Navbarmenu - Desktop ********/
@media (min-width: 1200px) {
  .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 {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    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;
    transition: 0.3s;
  }

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

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

  .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: 1199px) {
  .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: var(--nav-mobile-background-color);
    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;
  }
}



.footer .footer-bottom {
  /* margin-top: 50px; */
  padding: 25px 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--contrast-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/****** vIDEO ADVANTAGE ***********/

  .direct-video {
  width: 100%;
  height: 410PX;
  object-fit: fill;
  border-radius: inherit;
  display: block;
}


/**********  Scroll Top Button  **********/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 25%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/********** Disable aos animation delay on mobile devices    ************/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/**********   Global Page Titles & Breadcrumbs   ***********/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 80px;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/**********   Global Sections  *************/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*********** Global Section Titles  ************/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/********* Hero Section  ***********/
.hero {
  position: relative;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--background-color), transparent 5%) 100%);
  padding: 140px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .hero {
    padding: 100px 0 60px;
  }
}

.hero .hero-content {
  width: 100%;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero .hero-badge i {
  font-size: 12px;
}

.hero .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero .hero-text h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-text p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.hero .search-form {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .search-form .form-floating .form-control,
.hero .search-form .form-floating .form-select {
  color: var(--default-color);
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  font-size: 14px;
  height: 56px;
}

.hero .search-form .form-floating .form-control:focus,
.hero .search-form .form-floating .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.hero .search-form .form-floating .form-control::placeholder,
.hero .search-form .form-floating .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.hero .search-form .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.hero .search-form .btn-search {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero .search-form .btn-search:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .search-form .btn-search i {
  font-size: 16px;
}

.hero .hero-stats .stat-item {
  text-align: center;
  padding: 16px;
}

.hero .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-color);
}

.hero .hero-stats .stat-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-weight: 500;
}

.hero .hero-images {
  position: relative;
}

.hero .hero-images .image-stack {
  position: relative;
  height: 600px;
}

.hero .hero-images .image-stack .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 80%);
}

.hero .hero-images .image-stack .main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero .hero-images .image-stack .main-image .property-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface-color);
  padding: 12px 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-images .image-stack .main-image .property-tag .price {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.hero .hero-images .image-stack .main-image .property-tag .type {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  font-weight: 600;
}

.hero .hero-images .image-stack .secondary-image {
  position: absolute;
  top: -40px;
  left: 40px;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 4px solid var(--surface-color);
}

.hero .hero-images .image-stack .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-images .image-stack .floating-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  width: 280px;
}

.hero .hero-images .image-stack .floating-card .agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color);
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details {
  flex: 1;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details p {
  margin: 0 0 8px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details .rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details .rating i {
  color: #ffc107;
  font-size: 10px;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details .rating span {
  margin-left: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
  .hero .hero-images {
    margin-top: 60px;
  }

  .hero .hero-images .image-stack {
    height: 400px;
  }

  .hero .hero-images .image-stack .main-image img {
    height: 350px;
  }

  .hero .hero-images .image-stack .secondary-image {
    top: -20px;
    left: -40px;
    width: 150px;
    height: 150px;
  }

  .hero .hero-images .image-stack .floating-card {
    bottom: 20px;
    left: -20px;
    width: 250px;
    padding: 16px;
  }

  .hero .search-form {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .hero .search-form {
    padding: 20px;
    margin-bottom: 30px;
  }

  .hero .hero-stats .stat-item {
    padding: 12px 8px;
  }

  .hero .hero-stats .stat-item h3 {
    font-size: 1.5rem;
  }

  .hero .hero-stats .stat-item p {
    font-size: 13px;
  }

  .hero .hero-images .image-stack {
    height: 300px;
  }

  .hero .hero-images .image-stack .main-image img {
    height: 250px;
  }

  .hero .hero-images .image-stack .main-image .property-tag {
    top: 12px;
    right: 12px;
    padding: 8px 12px;
  }

  .hero .hero-images .image-stack .main-image .property-tag .price {
    font-size: 16px;
  }

  .hero .hero-images .image-stack .secondary-image {
    width: 120px;
    height: 120px;
  }

  .hero .hero-images .image-stack .floating-card {
    bottom: 10px;
    left: 10px;
    width: 220px;
    padding: 12px;
  }

  .hero .hero-images .image-stack .floating-card .agent-details h5 {
    font-size: 14px;
  }

  .hero .hero-images .image-stack .floating-card .agent-details p {
    font-size: 11px;
  }
}

/*********** Home About Section  ************/
.home-about .image-section {
  position: relative;
}

.home-about .image-section .main-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.home-about .image-section .main-image-wrapper .main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .home-about .image-section .main-image-wrapper .main-image {
    height: 350px;
  }
}

.home-about .image-section .main-image-wrapper .floating-card {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .home-about .image-section .main-image-wrapper .floating-card {
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
  }
}

.home-about .image-section .main-image-wrapper .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 10%));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .icon i {
  color: var(--contrast-color);
  font-size: 1.3rem;
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .text .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

@media (max-width: 768px) {
  .home-about .image-section .main-image-wrapper .floating-card .card-content .text .number {
    font-size: 1.5rem;
  }
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .text .label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.home-about .image-section .secondary-images {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 576px) {
  .home-about .image-section .secondary-images {
    flex-direction: column;
  }
}

.home-about .image-section .secondary-images .small-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.home-about .image-section .secondary-images .small-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-about .image-section .secondary-images .small-image img:hover {
  transform: scale(1.05);
}

.home-about .content-wrapper {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .home-about .content-wrapper {
    padding-right: 0;
    margin-top: 3rem;
  }
}

.home-about .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.home-about .content-wrapper .section-badge i {
  font-size: 1rem;
}

.home-about .content-wrapper h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .home-about .content-wrapper h2 {
    font-size: 2rem;
  }
}

.home-about .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.home-about .content-wrapper .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .home-about .content-wrapper .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.home-about .content-wrapper .stats-grid .stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.home-about .content-wrapper .stats-grid .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.home-about .content-wrapper .stats-grid .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .home-about .content-wrapper .stats-grid .stat-item .stat-number {
    font-size: 1.7rem;
  }
}

.home-about .content-wrapper .stats-grid .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
}

.home-about .content-wrapper .features-list {
  margin-bottom: 2.5rem;
}

.home-about .content-wrapper .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--default-color);
}

.home-about .content-wrapper .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.home-about .content-wrapper .features-list .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.home-about .content-wrapper .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .home-about .content-wrapper .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.home-about .content-wrapper .cta-wrapper .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.home-about .content-wrapper .cta-wrapper .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.home-about .content-wrapper .cta-wrapper .btn-primary:hover i {
  transform: translateX(3px);
}

.home-about .content-wrapper .cta-wrapper .btn-primary i {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick i {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text {
  display: flex;
  flex-direction: column;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text a {
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  font-size: 1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text a:hover {
  color: var(--accent-color);
}
/*********** Space We Provide Section  **************/
.space-we-provide .grid-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

@media (max-width: 992px) {
  .space-we-provide .grid-featured {
    grid-template-columns: 1fr;
  }
}

.space-we-provide .highlight-card {
  background-color: var(--surface-color);
  border-radius: 18px;
  box-shadow: 0 6px 28px color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.space-we-provide .highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 36px color-mix(in srgb, var(--default-color), transparent 85%);
}

.space-we-provide .highlight-card .media {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.space-we-provide .highlight-card .media .image-link {
  display: block;
  height: 100%;
}

.space-we-provide .highlight-card .media .image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.space-we-provide .highlight-card .media:hover img {
  transform: scale(1.08);
}

.space-we-provide .highlight-card .media .badge-set {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.space-we-provide .highlight-card .media .badge-set .flag {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  color: var(--contrast-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.space-we-provide .highlight-card .media .badge-set .flag.featured {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.space-we-provide .highlight-card .media .badge-set .flag.premium {
  background: color-mix(in srgb, var(--accent-color), blue 25%);
}

.space-we-provide .highlight-card .media .quick-specs {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.space-we-provide .highlight-card .media .quick-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  color: var(--contrast-color);
  background: color-mix(in srgb, #000, transparent 65%);
  font-size: 12px;
}

.space-we-provide .highlight-card .content {
  padding: 22px;
}

.space-we-provide .highlight-card .content .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.space-we-provide .highlight-card .content .top h3 {
  margin: 0 0 6px 0;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.25;
}

.space-we-provide .highlight-card .content .top h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.space-we-provide .highlight-card .content .top h3 a:hover {
  color: var(--accent-color);
}

.space-we-provide .highlight-card .content .excerpt {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  margin: 0 0 18px 0;
  line-height: 1.7;
  font-size: 15px;
}

/* MINI LIST */
.space-we-provide .mini-list {
  display: grid;
  gap: 16px;
  grid-template-rows: repeat(3, 1fr);
}

/* STACK CARD */
.space-we-provide .stack-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 22px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.space-we-provide .stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 86%);
}

.space-we-provide .stack-card .stack-media {
  position: relative;
  height: 350px;
  margin: 0;
}

.space-we-provide .stack-card .stack-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-we-provide .stack-card .stack-body {
  padding: 18px;
}

.space-we-provide .stack-card .stack-body h5 {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
}

.space-we-provide .stack-card .stack-body h5 a:hover {
  color: var(--accent-color);
}

.space-we-provide .stack-card .stack-body .stack-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 13px;
  margin-bottom: 10px;
}

.space-we-provide .stack-card .stack-body .stack-loc i {
  color: var(--accent-color);
}
/********* Amenities Services Section *********/
.amenities-services .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 24px 32px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  text-align: center;
  overflow: hidden;
}

.amenities-services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.4s ease;
  border-radius: 0 0 3px 3px;
}

.amenities-services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 88%);
}

.amenities-services .service-card:hover::before {
  width: 60px;
}

.amenities-services .service-card:hover .service-icon {
  background: var(--accent-color);
  transform: rotateY(360deg);
}

.amenities-services .service-card:hover .service-icon i {
  color: var(--contrast-color);
}

.amenities-services .service-card:hover .service-number {
  color: var(--accent-color);
  transform: scale(1.1);
}

.amenities-services .service-card.featured {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
}

.amenities-services .service-card.featured::before {
  background: var(--contrast-color);
}

.amenities-services .service-card.featured .service-header .service-icon {
  background: var(--contrast-color);
}

.amenities-services .service-card.featured .service-header .service-icon i {
  color: var(--accent-color);
}

.amenities-services .service-card.featured .service-header .service-number {
  color: var(--contrast-color);
}

.amenities-services .service-card.featured .service-content h3 a {
  color: var(--contrast-color);
}

.amenities-services .service-card.featured .service-content h3 a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.amenities-services .service-card.featured .service-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

/* Service Header */
.amenities-services .service-card .service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.amenities-services .service-card .service-header .service-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.amenities-services .service-card .service-header .service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.amenities-services .service-card .service-header .service-number {
  font-size: 24px;
  font-weight: 800;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-family: var(--heading-font);
  transition: all 0.3s ease;
}

/* Service Content */
.amenities-services .service-card .service-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.amenities-services .service-card .service-content h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.amenities-services .service-card .service-content h3 a:hover {
  color: var(--accent-color);
}

.amenities-services .service-card .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Button All Services */
.amenities-services .btn-all-services {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: transparent;
  color: var(--accent-color);
  text-decoration: none;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.amenities-services .btn-all-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: left 0.4s ease;
  z-index: -1;
}

.amenities-services .btn-all-services:hover {
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.amenities-services .btn-all-services:hover::before {
  left: 0;
}

.amenities-services .btn-all-services:hover i {
  transform: rotate(45deg);
}

.amenities-services .btn-all-services i {
  font-size: 20px;
  transition: transform 0.4s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .amenities-services .service-card {
    margin-bottom: 30px;
    padding: 36px 20px 28px;
  }

  .amenities-services .service-card .service-header {
    margin-bottom: 24px;
  }

  .amenities-services .service-card .service-header .service-icon {
    width: 60px;
    height: 60px;
  }

  .amenities-services .service-card .service-header .service-icon i {
    font-size: 28px;
  }

  .amenities-services .service-card .service-header .service-number {
    font-size: 22px;
  }

  .amenities-services .service-card .service-content h3 {
    font-size: 19px;
  }

  .amenities-services .service-card .service-content p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .amenities-services .service-card {
    padding: 32px 16px 24px;
  }

  .amenities-services .service-card .service-header {
    flex-direction: column;
    gap: 16px;
  }

  .amenities-services .service-card .service-header .service-number {
    font-size: 20px;
  }

  .amenities-services .service-card .service-content h3 {
    font-size: 18px;
  }

  .amenities-services .btn-all-services {
    padding: 16px 32px;
    font-size: 15px;
    margin-top: 40px;
  }
}


/*********   Featured Agents Section  ************/
.featured-agents .agent-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.featured-agents .agent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.featured-agents .agent-card:hover .agent-image img {
  transform: scale(1.05);
}

.featured-agents .agent-card:hover .agent-image .agent-overlay {
  opacity: 1;
  visibility: visible;
}

.featured-agents .agent-card:hover .status-badge {
  transform: scale(1.05);
}

.featured-agents .agent-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.featured-agents .agent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-agents .agent-image .agent-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 85%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.featured-agents .agent-image .agent-overlay .contact-buttons {
  display: flex;
  gap: 12px;
}

.featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact {
  width: 48px;
  height: 48px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px) scale(1.1);
}

.featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact:nth-child(2):hover {
  background: #dc3545;
}

.featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact:nth-child(3):hover {
  background: #25d366;
}

.featured-agents .agent-image .status-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.featured-agents .agent-image .status-badge.top-agent {
  background: linear-gradient(135deg, #ffd700, #ffb000);
  color: #333;
}

.featured-agents .agent-image .status-badge.certified {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0056b3 30%));
  color: var(--contrast-color);
}

.featured-agents .agent-image .status-badge.new-star {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: var(--contrast-color);
}

.featured-agents .agent-info {
  padding: 24px 20px;
}

.featured-agents .agent-meta {
  text-align: center;
  margin-bottom: 20px;
}

.featured-agents .agent-meta .agent-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
  line-height: 1.2;
}

.featured-agents .agent-meta .agent-title {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.featured-agents .agent-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
  padding: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
}

.featured-agents .agent-stats .stat-item {
  text-align: center;
  flex: 1;
}

.featured-agents .agent-stats .stat-item .stat-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.featured-agents .agent-stats .stat-item .stat-label {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.featured-agents .agent-stats .stat-divider {
  width: 1px;
  height: 30px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-agents .location-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  font-weight: 500;
}

.featured-agents .location-tag i {
  color: var(--accent-color);
  font-size: 14px;
}

.featured-agents .specialties {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.featured-agents .specialties .specialty-tag {
  background: var(--surface-color);
  color: var(--accent-color);
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  border: 1.5px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Contact Now Button inside card */
.space-profile-link {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 16px;
  width: 100%;
  height: 45px;

  background: #2C467B;
  color: #ffffff;

  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;

  text-decoration: none;
  border-radius: 8px;
  padding: 12px 24px;

  box-shadow: 0 8px 20px rgba(44, 70, 123, 0.25);
  transition: all 0.25s ease;
}

/* Hover */
.space-profile-link:hover {
  background: #243b68;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(44, 70, 123, 0.35);
}

/* Focus */
.space-profile-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 70, 123, 0.4);
}

.featured-agents .profile-link {
  display: block;
  text-align: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.featured-agents .profile-link:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.featured-agents .explore-agents-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.featured-agents .explore-agents-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.featured-agents .explore-agents-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.featured-agents .explore-agents-btn:hover {
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.featured-agents .explore-agents-btn:hover::before {
  left: 0;
}

.featured-agents .explore-agents-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 1199px) {
  .featured-agents .col-xl-4 {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .featured-agents .agent-image {
    height: 240px;
  }

  .featured-agents .agent-info {
    padding: 20px 18px;
  }

  .featured-agents .agent-meta .agent-name {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .featured-agents .agent-image {
    height: 220px;
  }

  .featured-agents .agent-image .agent-overlay {
    opacity: 1;
    visibility: visible;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, color-mix(in srgb, var(--heading-color), transparent 90%) 100%);
  }

  .featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .featured-agents .agent-stats {
    gap: 15px;
    padding: 14px;
  }

  .featured-agents .agent-stats .stat-item .stat-number {
    font-size: 16px;
  }

  .featured-agents .explore-agents-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
  .mobilecard{
    padding-bottom: 30px;
  }
}

/**********   Why Us Section   ************/
.why-us {
  padding: 100px 0;
  /* background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%); */
    background: linear-gradient(135deg, #ffffff 0%, #e7f0ff 30%, #b9ceff 50%, #dce7fd 100%);

  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/bg/abstract-bg-3.webp") no-repeat center center;
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us .image-showcase {
  position: relative;
}

.why-us .image-showcase .main-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-us .image-showcase .main-image-wrapper .main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content {
  text-align: center;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon:hover {
  transform: scale(1.1);
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content span {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0 0 15px 10px;
}

.why-us .image-showcase .main-image-wrapper:hover .main-image {
  transform: scale(1.05);
}

.why-us .image-showcase .floating-stats {
  position: absolute;
  top: -30px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-us .image-showcase .floating-stats .stat-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: rotate(5deg);
}

.why-us .image-showcase .floating-stats .stat-badge:nth-child(2) {
  transform: rotate(-3deg);
  background: var(--surface-color);
  color: var(--default-color);
}

.why-us .image-showcase .floating-stats .stat-badge .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-us .image-showcase .floating-stats .stat-badge .stat-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.why-us .image-showcase .experience-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 280px;
}

.why-us .image-showcase .experience-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .image-showcase .experience-card .card-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.why-us .image-showcase .experience-card .card-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.why-us .image-showcase .experience-card .card-content p {
  font-size: 0.9rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .content-wrapper {
  padding-left: 2rem;
}

.why-us .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.why-us .content-wrapper .section-badge i {
  color: var(--accent-color);
}

.why-us .content-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.why-us .content-wrapper .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.why-us .content-wrapper .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .content-wrapper .achievement-highlights {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  background: var(--surface-color);
  justify-content: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item {
  text-align: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.why-us .content-wrapper .achievement-highlights .highlight-divider {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us .content-wrapper .action-buttons {
  display: flex;
  gap: 1.5rem;
}

.why-us .content-wrapper .action-buttons .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.why-us .content-wrapper .action-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border: none;
  color: var(--contrast-color);
}

.why-us .content-wrapper .action-buttons .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.why-us .content-wrapper .action-buttons .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.why-us .content-wrapper .action-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .why-us {
    padding: 80px 0;
  }

  .why-us .content-wrapper {
    padding-left: 0;
    margin-top: 3rem;
  }

  .why-us .content-wrapper h2 {
    font-size: 2.3rem;
  }

  .why-us .content-wrapper .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights .highlight-divider {
    width: 40px;
    height: 1px;
  }

  .why-us .content-wrapper .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .why-us .image-showcase .main-image-wrapper .main-image {
    height: 400px;
  }

  .why-us .image-showcase .floating-stats {
    position: relative;
    top: 20px;
    right: 0;
    flex-direction: row;
    justify-content: center;
  }

  .why-us .image-showcase .experience-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 2rem;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .why-us {
    padding: 60px 0;
  }

  .why-us .content-wrapper h2 {
    font-size: 2rem;
  }

  .why-us .content-wrapper .lead-text {
    font-size: 1.1rem;
  }

  .why-us .image-showcase .floating-stats {
    flex-direction: column;
    gap: 10px;
  }

  .why-us .image-showcase .floating-stats .stat-badge {
    min-width: 100px;
    padding: 15px;
  }

  .why-us .image-showcase .floating-stats .stat-badge .stat-number {
    font-size: 1.5rem;
  }
}
