* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "General Sans Medium", "Manrope", sans-serif;
}
* {
  -webkit-tap-highlight-color: transparent;
}

:focus:not(:focus-visible) {
  outline: none;
}

body {
  font-family: "General Sans Medium", "Manrope", sans-serif;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
h1,
h2 {
  letter-spacing: 0.9px -0.02em;
}
a {
  text-decoration: none;
  width: max-content;
}
ul {
  list-style: none;
}
/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 9999999999999;
  padding-block: 12px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 80px; */
}
.header-content .header-contact {
  display: none;
}
.header-content .cta-button {
  display: none;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo img {
  width: 125px;
}

.logo-circle {
  width: 48px;
  height: 48px;
  background-color: #5ba15d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}

nav {
  display: none;
  gap: 2rem;
}

nav a {
  color: #606b76;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav a.active {
  color: #c2a14c;
}

nav a:hover {
  color: #c2a14c;
}

/* Navigation Dropdown Styles */
.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #f2f2f2;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  /* padding: 12px 0; */
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 12px 24px;
  color: #606b76;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: 100%;
}

.nav-dropdown-item:hover {
  background-color: #f5f7fa;
  color: #c2a14c;
  padding-left: 28px;
}

/* Mobile menu dropdown */
.mobile-menu .nav-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-menu .nav-dropdown-toggle {
  justify-content: space-between;
}

.mobile-menu .nav-dropdown-menu {
  position: static;
  transform: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: none;
  display: none;
  transition: all 0.3s ease;
}

.mobile-menu .nav-dropdown.active .nav-dropdown-menu {
  display: block;
  visibility: visible;
  transform: translateX(0%) translateY(0);
  opacity: 1;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 57px;
  gap: 4px;
  padding: 16px 20px;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.9s;
  font-family: "General Sans Semibold", sans-serif;
  background-color: #c2a14c;
  color: #122940;
  transition: all 0.3s ease-in-out;
}
.header-content .cta-button {
  min-width: unset;
  height: unset;
}
.cta-button.cta-with-icon {
  min-width: 196px;
  height: 57px;
}
.cta-button.cta-with-icon span {
  transform: translateX(10px);
  transition: all 0.3s ease-in-out;
}
.hero-cta-btn .cta-with-icon:hover {
  color: #122940;
}
.cta-button .arrow-icon {
  /* display:none; */
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cta-button:hover {
  color: #fff;
}
.cta-button:hover .arrow-icon {
  /* display: inline; */
  opacity: 1;
}
.cta-button.cta-with-icon:hover span {
  /* display: inline; */
  opacity: 1;
  transform: translateX(0);
}

.cta-button.secondary {
  background-color: #122940;
  color: #fff;
}
.cta-button.secondary:hover {
  background-color: #c2a14c;
  color: #fff;
}
.cta-button.outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.cta-button.outline:hover {
  background-color: #122940;
  color: #fff;
  border-color: #122940;
}
.mobile-menu-btn {
  background: none;
  border: none;
  color: #4b5563;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu .cta-button {
  display: flex;
  width: 100%;
  margin-top: 0.5rem;
}

.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hero Section with Animated Background */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.hero-section .marquee {
  position: absolute;
  left: 0;
  bottom: 50px;
  z-index: 99999999;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.hero-bg-image.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 41, 64, 0.6);
  z-index: 0;
}

.hero-wrapper {
  padding-block: 80px 180px;
  padding-inline: 24px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  margin-block: 1.75rem;
}
.hero-wrapper.other-hero-wrapper {
  padding-block: 50px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 848px;
  margin: 0 auto;
}

.hero-content .intro p {
  color: #c2a14c;
  font-size: clamp(12px, 2vw, 20px);
  font-family: "General Sans Medium";
}
.hero-content .intro h1 {
  font-size: clamp(24px, 6vw, 56px);
  font-weight: 500;
  font-family: "Satoshi Medium", sans-serif;
  color: #fff;
  max-width: 650px;
}
.hero-content .hero-desc {
  color: #fff;
  font-size: clamp(14px, 2vw, 20px);
  max-width: 628px;
  letter-spacing: 0.9px 0.9px;
}
.hero-cta-btn {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.achievment-marquee {
  font-size: 15px;
  overflow: hidden;
  user-select: none;
  --gap: 10px;
  display: flex;
  gap: var(--gap);
  background-color: #f5f7fa;
}

.achievment-marquee ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  animation: scroll 40s linear infinite;
  padding-block: 20px;
}

.achievment-marquee ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.achievment-marquee ul li img {
  width: 32px;
}
.achievment-marquee ul li div span {
  color: #122940;
  font-family: "General Sans Medium", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
}
.achievment-marquee ul li div p {
  color: #606b76;
  font-family: "General Sans Light", sans-serif;
  font-size: clamp(12px, 2vw, 14px);
}

.achievment-marquee:hover ul {
  animation-play-state: paused;
}

.our-valuation-service-wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 48px 20px;
  gap: 32px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  max-width: 684px;
  margin: 0 auto;
}
.section-header .section-title, .section-title {
  color: #122940;
  font-family: "Satoshi Medium", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 4vw, 40px);
}
.section-header .section-desc {
  font-size: clamp(14px, 2vw , 20px);
  color: #606b76;
  text-wrap: balance;
}
.valuation-grids {
  display: grid;
  gap: 16px 40px;
  grid-template-columns: 1fr;
}
.valuation-grid {
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  overflow: hidden;
}
.valuation-grid > img {
  width: 100%;
  max-height: 325px;
  object-fit: cover;
}
.valuation-grid .valuation-grid-content {
  padding: 48px 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.valuation-grid-content-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.valuation-grid-content-header > img {
  width: 32px;
}
.valuation-grid-content-header p {
  color: #122940;
  font-size: clamp(20px, 2vw, 32px);
  font-family: "Satoshi Light", sans-serif;
  font-weight: 600;
}
.valuation-grid-content .valuation-grid-desc {
  color: #606b76;
  font-size: clamp(12px, 2vw, 14px);
  font-family: "General Sans Light", sans-serif;
}

.why-choose-us-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 32px 64px;
  padding-block: 48px 20px;
  /* align-items: start; */
  overflow-x: hidden;
}
.why-choose-us-wrapper .why-choose-us-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 662px;
}
.why-choose-us-wrapper .section-title {
  font-size: clamp(20px, 4vw, 40px);
  text-wrap: balance;
}
.why-choose-us-wrapper .section-desc {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  font-family: "General Sans Light", sans-serif;
  font-weight: 600;
  text-wrap: unset;
}
.why-choose-us-lists {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-choose-us-lists li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-choose-us-lists li img {
  width: 20px;
}
.why-choose-us-lists li p {
  color: #606b76;
  font-size: clamp(12px, 2vw, 16px);
  font-family: "General Sans Light", sans-serif;
}
.quick-turn-around {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
  background-color: #122940;
  border-radius: 12px;
  color: #fff;
  /* max-width: 538px; */
}
.turn-around-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.turn-around-header p {
  font-size: clamp(24px, 2vw, 32px);
  font-family: "Satoshi Medium", sans-serif;
}
.turn-around-header > img {
  width: 20px;
}
.turn-around-desc {
  color: #dfefff;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 28px;
}
.turn-around-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px 16px;
  flex-wrap: wrap;
}
.turn-around-footer > div > span {
  color: #c2a14c;
  font-size: clamp(24px, 2vw, 48px);
  font-family: "Playfair Display SC Black", sans-serif;
}
.turn-around-footer > div > p {
  color: #f1f1f1;
  font-size: clamp(12px, 2vw, 14px);
  font-family: "General Sans Light", sans-serif;
}
.client-testimonials-wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 48px;
  gap: 32px;
}
.testimonial-grids {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 40px;
}
.testimonial-grid {
  background-color: #f5f7fa;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease-in-out;
}
.testimonial-grid:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: scale(1.01);
}
.testimonial-grid .testimonial {
  color: #606b76;
  font-size: clamp(14px, 2vw, 20px);
  font-style: italic;
}
.testimonial-grid .testimonial-client {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-grid .testimonial-client .client-name {
  color: #122940;
  font-size: clamp(14px, 2vw, 16px);
  font-family: "General Sans SemiBold", sans-serif;
}
.testimonial-grid .testimonial-client .client-position {
  color: #606b76;
  font-size: clamp(14px, 2vw, 16px);
  font-family: "General Sans Light", sans-serif;
}
.testimonial-grid hr {
  border: 0;
  border-top: 1px solid #9e9fa2;
  margin: 0;
  opacity: 0.8;
}
.ready-to-get-started {
  padding-block: 48px;
}
.ready-to-get-started-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  background: linear-gradient(180deg, #c3dfed 0%, #dff0f7 100%);
  padding: 48px 32px 32px;
  border-radius: 12px;
}
.ready-to-get-started-wrapper .section-header {
  text-align: left;
  margin: 0;
  max-width: 450px;
}
.ready-to-get-started-wrapper .section-header .section-desc {
  text-align: left;
  text-wrap: unset;
}
footer {
  padding-block: 48px;
}
.footer-content {
  display: grid;
  gap:3rem 2rem ;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  font-size: 1.5rem;
}

.footer-logo-text {
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}

.footer-tagline {
  color: #d1d5db;
}

.footer-description {
  color: #bec1ce;
  font-size: 0.9rem;
  line-height: 2;
  max-width: 218px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #f2f2f2;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: #c2a14c;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact p {
  color: #f2f2f2;
  font-size: 0.95rem;
}

.footer-labels {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 0.3px solid #f5f5f5;
}
.footer-labels-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-labels .footer-section {
  flex-direction: row;
  gap: 16px 48px;
  flex-wrap: wrap;
}
.footer-labels .footer-section a,
.all-rights {
  color: #68727c;
  font-family: "General Sans Light", sans-serif;
}
.footer-labels .footer-section a:hover {
  color: #c2a14c;
}

.residential-valuations{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.residential-valuation{
  display: flex;
  justify-content: space-between;
  gap: 16px 32px;
  flex-wrap: wrap;
  border: 1.5px solid #DCDCEB;
  border-radius: 12px;
  padding: 48px 24px 24px;
}
.residential-valuation .valuation-level{
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 700px;
}
.valuation-level .valuation-title{
  color: #122940;
  font-size: clamp(16px, 2vw, 32px);
  font-family:"Satoshi Light", sans-serif;
}
.valuation-level .valuation-desc{
  color: #606B76;
  font-size: clamp(14px, 2vw, 20px);
  font-family:"General Sans Light", sans-serif;
}
.valuation-level .best-for{
  color: #C2A14C;
  font-size: clamp(12px, 2vw, 16px);
  font-family:"General Sans Medium", sans-serif;
}
 .includes{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 16px;
  background-color: #F5F7FA;
  border-radius: 12px;
  flex: 1;
  /* min-width: 200px; */
}
 .includes .text-include{
  color: #122940;
  font-size: clamp(14px, 2vw, 24px);
  font-family:"Satoshi Medium", sans-serif;
}

.rvp-grids{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 32px;
}
.rvp-grid{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  background-color: white;
  border-radius: 12px;
  padding: 32px;
}
.rvp-grid .rvp-title{
  color: #122940;
  font-size: clamp(16px, 2vw, 20px);
  font-family: "General Sans Medium", sans-serif;
  font-weight: 500;
}
.rvp-grid .rvp-desc{
  color: #606B76;
  font-size: clamp(12px, 2vw, 14px);
  font-family: "General Sans Light", sans-serif;
  max-width: 240px;
  margin-top: 6px;
}
.rics-regulated .coverage-areas{
  color: white;
  font-family: "General Sans Medium", sans-serif;
  font-size: clamp(14px, 4vw, 20px);
}
.our-valuation-service-wrapper .commercial-valuations{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.our-valuation-service-wrapper .commercial-valuations .commercial-valuation{
 display: flex;
 align-items: start;
 gap: 42px;
 padding: 20px 24px;
 border-radius: 12px;
 border: 1.5px solid #DCDCEB;
}
.sectors-we-cover-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px ;
}
.why-choose-team-grids{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap:16px 50px;
}
.why-choose-team-grid{
  display: flex;
  flex-direction:column;
  text-align: center;
  align-items: center;
  gap: 12px;
  padding: 12px;
  
}
.why-choose-team-grid .rvp-title{
  color: #122940;
  font-size: clamp(16px, 2vw, 20px);
  font-family: "General Sans Medium", sans-serif;
  font-weight: 500;
  
}
.why-choose-team-grid .rvp-desc{
  color: #606B76;
  font-size: 14px;
  font-family: "General Sans Light", sans-serif;
  max-width: 260px;  
}

.our-heritage-wrapper {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-block: 48px 20px;
}

.our-heritage-content{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.our-heritage-content p {
  color:#606B76;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 24px;
}
.our-heritage-features{
  display: flex;
  justify-content: space-between;
  gap: 12px 80px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.our-heritage-features > div > span {
  color: #c2a14c;
  font-size: clamp(24px, 2vw, 48px);
  font-family: "Playfair Display SC Black", sans-serif;
}

.our-heritage-banner {
  position: relative;
}
.our-heritage-banner > img{
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}
.our-heritage-banner-tag {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 12px;
  background-color: #122940;
  padding: 24px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate( -50%, 0px);
  width: 420px;
  max-width: 90%;
}
.our-heritage-banner-tag span{
  color:#606B76;
  font-size: clamp(14px, 2vw, 16px);
  font-family: "General Sans Light", sans-serif;
}
.our-heritage-banner-tag p{
  color:#fff;
  font-size: clamp(18px, 2vw, 32px);
  font-family: "Satoshi Medium", sans-serif;
  text-wrap: balance;
}
.our-team-grids{
  display: grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr)) ;
  gap:16px 8px;
}
.our-team-grid{
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 12px;
  padding: 32px 24px;
  background-color: #F5F7FA;
}
.our-team-grid img{
  width: 100%;
  /* min-height: 320px; */
  object-fit: cover;
  aspect-ratio: 279/322;
}
.our-team-grid .hr{
  height: 0.5px;
  width: 100%;
  background-color: #9E9FA2;
  opacity: .3;
}
.our-team-grid-content{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.our-team-grid-content .team-name{
  color: #122940;
  font-size: 1rem;
  font-family: "General Sans SemiBold", sans-serif;
}
.our-team-grid-content .team-position p{
  color: #C2A14C;
  font-size: 14px;
  font-family: "General Sans Medium", sans-serif;
}
.our-team-grid-content .team-position span{
  color: #606B76;
  font-size: 10px;
  font-family: "General Sans Light", sans-serif;
}
.our-team-grid-content .team-desc{
  color: #606B76;
  font-size: 14px;
}
.proffessional-accredition-wrapper{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 50px;
}
.proffessional-acrredition-rics{
  display: flex;
  flex-direction: column;
  /* gap: 8px; */
 background-color: #293E53;
 padding: 16px 20px;
 border-radius: 12px;
 justify-content: center;
 text-align: center;
 /* width: 256px; */
 max-width: 100%;
}
.proffessional-acrredition-rics p{
  font-size: clamp(24px, 2vw, 28px);
  color: #C2A14C;
  font-weight: 600;
}
.proffessional-acrredition-rics span{
  font-size: clamp(14px, 2vw, 16px);
  color: #606B76;
}
.step-number {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background: #122940;
            color: #C2A14C;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            /* box-shadow: 0 4px 12px rgba(26, 58, 82, 0.2); */
            font-family: "Satoshi Medium", sans-serif;
        }
.step-number.bigger {
            width: 56px;
            height: 56px;
            font-size: 1.25rem;
        }
.step-number.grey {
            background-color: #E3E6E8;
        }

        .cta-button.outline-blue{
          border:1px solid #122940;
        }
        .cta-button.outline-blue span{
          color: #122940;
        }
        .cta-button.outline-blue:hover span{
          color: #fff;
        }
        .commercial-valuation-wrapper   {
          display: flex;
          flex-direction: column-reverse;
        }
        .commercial-valuation-wrapper > div  {
          flex-basis: 100%;
        }
@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Enhanced AOS Animations */
[data-aos="fade-up-custom"] {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition-property: transform, opacity;
}
[data-aos="fade-up-custom"].aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-aos="zoom-out"] {
  opacity: 0;
  transform: scale(1.2);
  transition-property: transform, opacity;
}
[data-aos="zoom-out"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

[data-aos="slide-left-custom"] {
  opacity: 0;
  transform: translateX(80px);
  transition-property: transform, opacity;
}
[data-aos="slide-left-custom"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="reveal-text"] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
[data-aos="reveal-text"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth easing for all AOS animations */
.aos-init {
  will-change: transform, opacity;
}

/* Card hover effects with AOS */
.valuation-grid:hover,
.testimonial-grid:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Button hover animations */
.cta-button:hover {
  transform: translateY(-3px);
}

/* Staggered animation delays helper classes */
.stagger-1 {
  transition-delay: 100ms;
}
.stagger-2 {
  transition-delay: 200ms;
}
.stagger-3 {
  transition-delay: 300ms;
}
.stagger-4 {
  transition-delay: 400ms;
}
.stagger-5 {
  transition-delay: 500ms;
}
/* Responsive Design */
@media (min-width: 480px) {
  .cta-button.cta-with-icon {
    min-width: 256px;
    height: 61px;
  }

  .rvp-grids{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sectors-we-cover-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 100px;
}
}
@media (min-width: 640px) {
  .logo-text {
    display: block;
  }

  .logo img {
    width: 170px;
  }
  .section-header {
  gap: 20px;
}
  .quick-turn-around {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 64px 48px;
    background-color: #122940;
    border-radius: 12px;
    color: #fff;
    /* max-width: 538px; */
  }
  .turn-around-header > img {
    width: 32px;
  }
  .testimonial-grids {
    grid-template-columns: 1fr 1fr;
  }
  .ready-to-get-started-wrapper {
    display: flex;
    flex-direction: column;
    gap: 88px;
    text-align: center;
    background: linear-gradient(180deg, #c3dfed 0%, #dff0f7 100%);
    padding: 48px 88px;
    border-radius: 12px;
  }
   .includes{
  gap:20px;
  padding: 20px 32px;
}
.why-choose-team-grids{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap:16px ;
}
}

@media (min-width: 768px) {
  .hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 848px;
  margin: 0 auto;
}
  .cta-button {
    min-width: 196px;
    height: 59px;
  }
  .cta-button.cta-with-icon {
    min-width: 256px;
    height: 61px;
  }

  .valuation-grids {
    grid-template-columns: 1fr 1fr;
  }

  .valuation-grid-content-header > img {
    width: 42px;
  }
  .client-testimonials-wrapper {
    padding-block: 64px;
    gap: 64px;
  }
  footer {
    padding-block: 100px;
  }
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    text-align: left;
  }
  .residential-valuations{
  gap: 64px;
}
.residential-valuation{
  flex-direction: row;
  justify-content: space-between;
  padding: 48px;
}
.residential-valuation .valuation-level{
  gap: 20px;
}
.rvp-grids{
  display: grid;
  grid-template-columns: 1fr 1fr ;
}
.our-valuation-service-wrapper .commercial-valuations{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  .hero-wrapper.other-hero-wrapper {
  padding-block:100px 64px;
}
  .achievment-marquee {
    --gap: 30px;
  }
  .achievment-marquee ul li img {
    width: 40px;
  }
  .our-valuation-service-wrapper {
    padding-block: 100px 64px;
    gap: 64px;
  }
  .our-heritage-wrapper {
    padding-block: 100px 64px;
  }
  .valuation-grid .valuation-grid-content {
    padding: 48px 48px 32px;
  }
  .why-choose-us-wrapper {
    flex-direction: row;
    gap: 32px 64px;
    padding-block: 100px 64px;
    align-items: start;
  }
  .quick-turn-around {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 64px 48px;
    background-color: #122940;
    border-radius: 12px;
    color: #fff;
    max-width: 538px;
  }
  .testimonial-grid {
    padding: 32px;
    gap: 32px;
  }
  .testimonial-grids {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px 40px;
  }
  .ready-to-get-started {
    padding-block: 100px 64px;
  }
  .rvp-grids{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr ;
}
.our-heritage-wrapper {
  grid-template-columns: 1fr 1fr;
}
.our-heritage-content{
  gap: 40px;
}
.our-heritage-content p {
  line-height: 40px;
}
.our-heritage-banner > img{
  max-height: unset;
}
.our-heritage-banner-tag {
  bottom: -20px;
  transform: translate( -50%, 20px);
}
.commercial-valuation-wrapper   {
          display: grid;
          grid-template-columns: 1fr 1fr;
        }
        .commercial-valuation-wrapper > div  {
          flex-basis:unset;
        }
}

@media (min-width: 1280px) {
  .mobile-menu-btn {
    display: none;
  }

  nav {
    display: flex;
  }

  .header-content .header-contact {
    display: flex;
  }
  .header-content .cta-button {
    display: flex;
  }

  .logo img {
    width: 232px;
  }
  .ready-to-get-started-wrapper {
    background-image: url("./assets/images/readyto-bg.jpg");
    background-repeat: no-repeat;
    background-position: right bottom;
  }
  .rvp-grids{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.our-valuation-service-wrapper .commercial-valuations{
 
  gap: 64px;
}
.our-valuation-service-wrapper .commercial-valuations .commercial-valuation{
 padding: 48px;

}
}

/* Button Responsiveness */
@media (min-width: 1024px) {
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-dark,
  .btn-light,
  .cta-button,
  .view-all-btn,
  .view-all-products-btn,
  .whatsapp-btn {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}

@media (max-width: 479px) {
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-dark,
  .btn-light,
  .cta-button,
  .view-all-btn,
  .view-all-products-btn,
  .whatsapp-btn {
    padding: 0.75rem 0.5rem;
    font-size: 14px;
  }
}
