 
      

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
      }

      body {
        font-family: "Cairo", sans-serif;
        
        line-height: 1.6;
        overflow-x: hidden;
        text-align: right;
      }

      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: "Cairo", sans-serif;
        font-weight: 700;
        line-height: 1.2;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      img {
        max-width: 100%;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
        text-align: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
      }

      .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.2);
        transition: all 0.5s ease;
        z-index: -1;
        transform: skewX(-25deg);
      }

      .btn:hover::before {
        width: 100%;
      }

      .btn-primary {
        background-color: var(--secondary);
        color: var(--white);
      }

      .btn-primary:hover {
        background-color: #976540;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
      }

      .btn-secondary {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
      }

      .btn-secondary:hover {
        background-color: var(--white);
        color: var(--primary);
        transform: translateY(-3px);
      }

      .btn-dark {
        background-color: var(--primary);
        color: var(--white);
      }

      .btn-dark:hover {
        background-color: #34495e;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(44, 62, 80, 0.3);
      }

      .text-center {
        text-align: center;
      }

      .section-padding {
        padding: 100px 0;
      }

      .section-title {
        margin-bottom: 40px;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s var(--animate-easing);
      }

      .section-title.animate-active {
        opacity: 1;
        transform: translateY(0);
      }

      .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        width: 0;
        height: 3px;
        background-color: var(--secondary);
        transition: width 1s ease 0.3s;
      }

      .section-title.animate-active h2::after {
        width: 80px;
      }

      .section-title p {
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
      }

      /* Animations */
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translate3d(0, 40px, 0);
        }
        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes fadeInDown {
        from {
          opacity: 0;
          transform: translate3d(0, -40px, 0);
        }
        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes fadeInLeft {
        from {
          opacity: 0;
          transform: translate3d(-40px, 0, 0);
        }
        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes fadeInRight {
        from {
          opacity: 0;
          transform: translate3d(40px, 0, 0);
        }
        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes zoomIn {
        from {
          opacity: 0;
          transform: scale3d(0.3, 0.3, 0.3);
        }
        50% {
          opacity: 1;
        }
      }

      @keyframes zoomOut {
        from {
          opacity: 1;
        }
        50% {
          opacity: 0;
          transform: scale3d(0.3, 0.3, 0.3);
        }
        to {
          opacity: 0;
        }
      }

      @keyframes slideInUp {
        from {
          transform: translate3d(0, 100%, 0);
          visibility: visible;
        }
        to {
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes slideInDown {
        from {
          transform: translate3d(0, -100%, 0);
          visibility: visible;
        }
        to {
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes slideInLeft {
        from {
          transform: translate3d(-100%, 0, 0);
          visibility: visible;
        }
        to {
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes slideInRight {
        from {
          transform: translate3d(100%, 0, 0);
          visibility: visible;
        }
        to {
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes pulse {
        from {
          transform: scale3d(1, 1, 1);
        }
        50% {
          transform: scale3d(1.05, 1.05, 1.05);
        }
        to {
          transform: scale3d(1, 1, 1);
        }
      }

      @keyframes bounce {
        from,
        20%,
        53%,
        80%,
        to {
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transform: translate3d(0, 0, 0);
        }
        40%,
        43% {
          animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
          transform: translate3d(0, -30px, 0);
        }
        70% {
          animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
          transform: translate3d(0, -15px, 0);
        }
        90% {
          transform: translate3d(0, -4px, 0);
        }
      }

      @keyframes flash {
        from,
        50%,
        to {
          opacity: 1;
        }
        25%,
        75% {
          opacity: 0;
        }
      }

      @keyframes rubberBand {
        from {
          transform: scale3d(1, 1, 1);
        }
        30% {
          transform: scale3d(1.25, 0.75, 1);
        }
        40% {
          transform: scale3d(0.75, 1.25, 1);
        }
        50% {
          transform: scale3d(1.15, 0.85, 1);
        }
        65% {
          transform: scale3d(0.95, 1.05, 1);
        }
        75% {
          transform: scale3d(1.05, 0.95, 1);
        }
        to {
          transform: scale3d(1, 1, 1);
        }
      }

      @keyframes shake {
        from,
        to {
          transform: translate3d(0, 0, 0);
        }
        10%,
        30%,
        50%,
        70%,
        90% {
          transform: translate3d(-10px, 0, 0);
        }
        20%,
        40%,
        60%,
        80% {
          transform: translate3d(10px, 0, 0);
        }
      }

      @keyframes headShake {
        0% {
          transform: translateX(0);
        }
        6.5% {
          transform: translateX(-6px) rotateY(-9deg);
        }
        18.5% {
          transform: translateX(5px) rotateY(7deg);
        }
        31.5% {
          transform: translateX(-3px) rotateY(-5deg);
        }
        43.5% {
          transform: translateX(2px) rotateY(3deg);
        }
        50% {
          transform: translateX(0);
        }
      }

      @keyframes swing {
        20% {
          transform: rotate3d(0, 0, 1, 15deg);
        }
        40% {
          transform: rotate3d(0, 0, 1, -10deg);
        }
        60% {
          transform: rotate3d(0, 0, 1, 5deg);
        }
        80% {
          transform: rotate3d(0, 0, 1, -5deg);
        }
        to {
          transform: rotate3d(0, 0, 1, 0deg);
        }
      }

      @keyframes tada {
        from {
          transform: scale3d(1, 1, 1);
        }
        10%,
        20% {
          transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        }
        30%,
        50%,
        70%,
        90% {
          transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        }
        40%,
        60%,
        80% {
          transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        }
        to {
          transform: scale3d(1, 1, 1);
        }
      }

      @keyframes wobble {
        from {
          transform: translate3d(0, 0, 0);
        }
        15% {
          transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        }
        30% {
          transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        }
        45% {
          transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        }
        60% {
          transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        }
        75% {
          transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        }
        to {
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes jello {
        from,
        11.1%,
        to {
          transform: translate3d(0, 0, 0);
        }
        22.2% {
          transform: skewX(-12.5deg) skewY(-12.5deg);
        }
        33.3% {
          transform: skewX(6.25deg) skewY(6.25deg);
        }
        44.4% {
          transform: skewX(-3.125deg) skewY(-3.125deg);
        }
        55.5% {
          transform: skewX(1.5625deg) skewY(1.5625deg);
        }
        66.6% {
          transform: skewX(-0.78125deg) skewY(-0.78125deg);
        }
        77.7% {
          transform: skewX(0.390625deg) skewY(0.390625deg);
        }
        88.8% {
          transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        }
      }

      @keyframes heartBeat {
        0% {
          transform: scale(1);
        }
        14% {
          transform: scale(1.3);
        }
        28% {
          transform: scale(1);
        }
        42% {
          transform: scale(1.3);
        }
        70% {
          transform: scale(1);
        }
      }

      @keyframes flipInX {
        from {
          transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
          animation-timing-function: ease-in;
          opacity: 0;
        }
        40% {
          transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
          animation-timing-function: ease-in;
        }
        60% {
          transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
          opacity: 1;
        }
        80% {
          transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        }
        to {
          transform: perspective(400px);
        }
      }

      @keyframes flipInY {
        from {
          transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
          animation-timing-function: ease-in;
          opacity: 0;
        }
        40% {
          transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
          animation-timing-function: ease-in;
        }
        60% {
          transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
          opacity: 1;
        }
        80% {
          transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        }
        to {
          transform: perspective(400px);
        }
      }

      @keyframes lightSpeedIn {
        from {
          transform: translate3d(100%, 0, 0) skewX(-30deg);
          opacity: 0;
        }
        60% {
          transform: skewX(20deg);
          opacity: 1;
        }
        80% {
          transform: skewX(-5deg);
        }
        to {
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes rotateIn {
        from {
          transform-origin: center;
          transform: rotate3d(0, 0, 1, -200deg);
          opacity: 0;
        }
        to {
          transform-origin: center;
          transform: translate3d(0, 0, 0);
          opacity: 1;
        }
      }

      @keyframes jackInTheBox {
        from {
          opacity: 0;
          transform: scale(0.1) rotate(30deg);
          transform-origin: center bottom;
        }
        50% {
          transform: rotate(-10deg);
        }
        70% {
          transform: rotate(3deg);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      @keyframes rollIn {
        from {
          opacity: 0;
          transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        }
        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
        100% {
          transform: translateY(0px);
        }
      }

      /* Scroll Animation Classes */
      .animate {
        opacity: 0;
        animation-duration: var(--animate-duration);
        animation-fill-mode: both;
        animation-timing-function: var(--animate-easing);
        will-change: transform, opacity;
        backface-visibility: hidden;
      }

      .animate.animate-active {
        opacity: 1;
      }

      /* Animation Types */
      .fade-in {
        animation-name: fadeIn;
      }

      .fade-in-up {
        animation-name: fadeInUp;
      }

      .fade-in-down {
        animation-name: fadeInDown;
      }

      .fade-in-left {
        animation-name: fadeInLeft;
      }

      .fade-in-right {
        animation-name: fadeInRight;
      }

      .zoom-in {
        animation-name: zoomIn;
      }

      .slide-in-up {
        animation-name: slideInUp;
      }

      .slide-in-down {
        animation-name: slideInDown;
      }

      .slide-in-left {
        animation-name: slideInLeft;
      }

      .slide-in-right {
        animation-name: slideInRight;
      }

      .pulse {
        animation-name: pulse;
      }

      .bounce {
        animation-name: bounce;
        transform-origin: center bottom;
      }

      .flash {
        animation-name: flash;
      }

      .rubber-band {
        animation-name: rubberBand;
      }

      .shake {
        animation-name: shake;
      }

      .head-shake {
        animation-name: headShake;
        animation-timing-function: ease-in-out;
      }

      .swing {
        transform-origin: top center;
        animation-name: swing;
      }

      .tada {
        animation-name: tada;
      }

      .wobble {
        animation-name: wobble;
      }

      .jello {
        animation-name: jello;
        transform-origin: center;
      }

      .heart-beat {
        animation-name: heartBeat;
        animation-duration: 1.3s;
        animation-timing-function: ease-in-out;
      }

      .flip-in-x {
        backface-visibility: visible !important;
        animation-name: flipInX;
      }

      .flip-in-y {
        backface-visibility: visible !important;
        animation-name: flipInY;
      }

      .light-speed-in {
        animation-name: lightSpeedIn;
        animation-timing-function: ease-out;
      }

      .rotate-in {
        animation-name: rotateIn;
      }

      .jack-in-the-box {
        animation-name: jackInTheBox;
      }

      .roll-in {
        animation-name: rollIn;
      }

      /* Animation Delays */
      .delay-100 {
        animation-delay: 0.1s;
      }

      .delay-200 {
        animation-delay: 0.2s;
      }

      .delay-300 {
        animation-delay: 0.3s;
      }

      .delay-400 {
        animation-delay: 0.4s;
      }

      .delay-500 {
        animation-delay: 0.5s;
      }

      .delay-600 {
        animation-delay: 0.6s;
      }

      .delay-700 {
        animation-delay: 0.7s;
      }

      .delay-800 {
        animation-delay: 0.8s;
      }

      .delay-900 {
        animation-delay: 0.9s;
      }

      .delay-1000 {
        animation-delay: 1s;
      }

      .delay-1500 {
        animation-delay: 1.5s;
      }

      .delay-2000 {
        animation-delay: 2s;
      }

      /* Animation Durations */
      .duration-300 {
        animation-duration: 0.3s;
      }

      .duration-500 {
        animation-duration: 0.5s;
      }

      .duration-700 {
        animation-duration: 0.7s;
      }

      .duration-1000 {
        animation-duration: 1s;
      }

      .duration-1500 {
        animation-duration: 1.5s;
      }

      .duration-2000 {
        animation-duration: 2s;
      }

      .duration-2500 {
        animation-duration: 2.5s;
      }

      .duration-3000 {
        animation-duration: 3s;
      }

      /* Animation Speeds */
      .slow {
        animation-duration: 2s;
      }

      .slower {
        animation-duration: 3s;
      }

      .fast {
        animation-duration: 800ms;
      }

      .faster {
        animation-duration: 500ms;
      }

      /* Infinite Animation */
      .infinite {
        animation-iteration-count: infinite;
      }

      /* Header */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
        transition: var(--transition);
      }

      .header.scrolled {
        background-color: var(--white);
        box-shadow: var(--shadow);
        padding: 15px 0;
        animation: slideInDown 0.5s ease forwards;
      }

      

      .header.scrolled .logo {
        color: var(--primary);
      }

      .header.scrolled .nav-link {
        /* color: var(--text); */
      }

      .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
      }

      .logo {
        font-family: "Cairo", sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--white);
        transition: var(--transition);
      }

      .logo span {
        color: var(--secondary);
        display: inline-block;
        animation: pulse 2s infinite;
      }

      /* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.custom-logo {
  max-height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

/* Default Logo (visible when header is not scrolled) */
.default-logo {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* Sticky Logo (hidden by default) */
.sticky-logo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

/* Show sticky logo when header is scrolled */
.header.scrolled .default-logo {
  opacity: 0;
  visibility: hidden;
}

.header.scrolled .sticky-logo {
  opacity: 1;
  visibility: visible;
}


      .nav-menu {
        display: flex;
        list-style: none;
        flex-direction: row-reverse;
      }

      .nav-item {
        margin-right: 30px;
        opacity: 0;
        animation: fadeIn 0.5s forwards;
      }

      .nav-item:nth-child(1) {
        animation-delay: 0.1s;
      }

      .nav-item:nth-child(2) {
        animation-delay: 0.2s;
      }

      .nav-item:nth-child(3) {
        animation-delay: 0.3s;
      }

      .nav-item:nth-child(4) {
        animation-delay: 0.4s;
      }

      .nav-item:nth-child(5) {
        animation-delay: 0.5s;
      }

      .nav-item:nth-child(6) {
        animation-delay: 0.6s;
      }

      .nav-item:nth-child(7) {
        animation-delay: 0.7s;
      }

      .nav-item:nth-child(8) {
        animation-delay: 0.8s;
      }

      .nav-item:nth-child(9) {
        animation-delay: 0.9s;
      }

      .nav-item:nth-child(10) {
        animation-delay: 1s;
      }

      .nav-item:nth-child(11) {
        animation-delay: 1.1s;
      }

      .nav-link {
        color: var(--white);
        font-weight: 500;
        transition: var(--transition);
        position: relative;
      }

      .nav-link::after {
        content: "";
        position: absolute;
        bottom: -5px;
        right: 0;
        width: 0;
        height: 2px;
        background-color: var(--secondary);
        transition: var(--transition);
      }

      .nav-link:hover::after,
      .nav-link.active::after {
        width: 100%;
      }

      .mobile-toggle {
        display: none;
        background: none;
        border: none;
        color: var(--white);
        font-size: 24px;
        cursor: pointer;
        transition: var(--transition);
      }

      .header.scrolled .mobile-toggle {
        color: var(--primary);
      }

      .contact-header {
        display: flex;
        align-items: center;
        gap: 20px;
      }

      .contact-item {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 10px;
        transition: transform 0.3s ease;
      }

      .contact-item:hover {
        transform: translateY(-3px);
      }

      .contact-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        line-height: 13px;
      }

      .phone-icon {
        background-color: rgb(151 101 64 / 10%);
        color: var(--secondary);
      }

      .whatsapp-icon {
        background-color: rgb(151 101 64 / 10%);
        color: var(--secondary);
      }

      .contact-text {
        display: flex;
        flex-direction: column;
      }

      .contact-label {
        font-size: 12px;
        color: #fff;
      }

      .contact-value {
        font-weight: 500;
        font-size: 14px;
        color: #fff;
      }

      .header.scrolled .contact-label,
      .header.scrolled .contact-value {
        color: #333 !important;
      }

      .header.scrolled .nav-link {
        color: #333 !important;
      }

      /* Hero Section */
      .hero {
        height: 100vh;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
          url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        color: var(--white);
        position: relative;
        text-align: center !important;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle,
          transparent 20%,
          rgba(0, 0, 0, 0.4) 100%
        );
        animation: pulse 15s infinite alternate;
      }

      .hero-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .hero-logo {
        animation: float 4s ease-in-out infinite;
        transform-origin: center;
        transition: transform 0.5s ease;
        margin-bottom: 30px;
      }

      .hero-logo:hover {
        transform: scale(1.05);
      }

      .hero-subtitle {
        font-size: 18px;
        letter-spacing: 1px;
        margin-bottom: 20px;
        color: var(--secondary);
        opacity: 0;
        animation: fadeInDown 1s 0.5s forwards;
      }

      .hero-title {
        font-size: 60px;
        margin-bottom: 20px;
        line-height: 1.2;
        opacity: 0;
        animation: zoomIn 1s 0.7s forwards;
      }

      .hero-description {
        font-size: 18px;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0;
        animation: fadeIn 1s 0.9s forwards;
      }

      .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-direction: row-reverse;
      }

      .hero-buttons .btn {
        opacity: 0;
        animation: fadeInUp 1s forwards;
      }

      .hero-buttons .btn:nth-child(1) {
        animation-delay: 1.1s;
      }

      .hero-buttons .btn:nth-child(2) {
        animation-delay: 1.3s;
      }

      .scroll-down {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 30px;
        animation: bounce 2s infinite;
        opacity: 0;
        animation-delay: 1.5s;
        animation-fill-mode: forwards;
      }

      /* Luxury Living Section */
      .luxury-living {
        background-color: var(--light);
        position: relative;
        overflow: hidden;
      }

      .luxury-living::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(151, 101, 64, 0.06);;
        border-radius: 50%;
        z-index: 0;
      }

      .luxury-living::after {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(151, 101, 64, 0.06);
        border-radius: 50%;
        z-index: 0;
      }

      .luxury-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
      }

      .luxury-content p {
        margin-bottom: 20px;
      }

      /* Features Section */
      .features {
        background-color: var(--white);
        position: relative;
        overflow: hidden;
      }

      .features::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at top right,
          rgba(151, 101, 64, 0.06); 0%,
          transparent 70%
        );
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 1;
      }

      .feature-card {
        background-color: #97654017;
        border-radius: 10px;
        padding: 40px 30px;
        box-shadow: var(--shadow);
        transition: all 0.5s ease;
        text-align: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transform: translateY(50px);
        opacity: 0;
      }

      .feature-card.animate-active {
        transform: translateY(0);
        opacity: 1;
      }

      .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background-color: var(--secondary);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s ease;
        z-index: -1;
      }

      .feature-card:hover::before {
        transform: scaleX(1);
        transform-origin: left;
      }

      .feature-card:hover {
        transform: translateY(-10px);
      }

      .feature-icon {
        width: 80px;
        height: 80px;
        background-color: rgb(151 101 64 / 10%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        transition: all 0.5s ease;
      }

      .feature-card:hover .feature-icon {
        background-color: var(--secondary);
        transform: rotateY(360deg);
      }

      .feature-icon i {
        font-size: 36px;
        color: var(--secondary);
        transition: all 0.5s ease;
      }

      .feature-card:hover .feature-icon i {
        color: #fff !important;
      }

      .feature-title {
        font-size: 22px;
        margin-bottom: 15px;
        transition: all 0.3s ease;
      }

      .feature-card:hover .feature-title {
        color: var(--secondary);
      }

      .feature-description {
        color: var(--text-light);
        transition: all 0.3s ease;
      }

      /* Banner Section */
      .banner {
        height: 400px;
        background: linear-gradient(
            rgba(22, 160, 133, 0.7),
            rgba(44, 62, 80, 0.7)
          ),
          url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          45deg,
          rgba(0, 0, 0, 0.2) 0%,
          transparent 100%
        );
        animation: pulse 10s infinite alternate;
      }

      .banner-title {
        font-size: 48px;
        
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: scale(0.9);
      }

      .banner-title.animate-active {
        opacity: 1;
        transform: scale(1);
        transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      /* Building Showcase */
      .building-showcase {
        background-color: var(--light);
        position: relative;
        overflow: hidden;
      }

      .building-showcase::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background-color: rgba(151, 101, 64, 0.06);;
        border-radius: 50%;
      }

      .showcase-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 1;
      }

      .showcase-card {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all 0.5s ease;
        position: relative;
        opacity: 0;
        transform: translateY(50px);
      }

      .showcase-card.animate-active {
        opacity: 1;
        transform: translateY(0);
      }

      .showcase-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.6) 0%,
          transparent 100%
        );
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      .showcase-card:hover::after {
        opacity: 1;
      }

      .showcase-card:hover {
        transform: translateY(-10px);
      }

      .showcase-image {
        height: 400px;
        overflow: hidden;
      }

      .showcase-image img {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
        transition: all 0.8s ease;
      }

      .showcase-card:hover .showcase-image img {
        transform: scale(1.1) rotate(2deg);
      }

      /* Image Slider */
      .image-slider {
        background-color: var(--white);
        position: relative;
        overflow: hidden;
      }

      .image-slider::before {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(151, 101, 64, 0.06);
        border-radius: 50%;
      }

      .slider-container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: var(--shadow);
        opacity: 0;
        transform: scale(0.95);
        transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
      }

      .slider-container.animate-active {
        opacity: 1;
        transform: scale(1);
      }

      .slider-wrapper {
        display: flex;
        transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        direction: rtl !important;
      }

      .slider-item {
        flex: 0 0 100%;
        border-radius: 10px;
        overflow: hidden;
      }

      .slider-image {
        height: 100% !important;
        position: relative;
      }

      .slider-image img {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
        transition: transform 5s ease;
      }

      .slider-item:hover .slider-image img {
        transform: scale(1.1);
      }

      .slider-caption {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        padding: 30px;
        color: var(--white);
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.5s ease 0.3s;
      }

      .slider-item.active .slider-caption {
        transform: translateY(0);
        opacity: 1;
      }

      .slider-title {
        font-size: 24px;
        margin-bottom: 10px;
      }

      .slider-description {
        opacity: 0.8;
      }

      .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: rgba(255, 255, 255, 0.3);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        z-index: 2;
        opacity: 0;
      }

      .slider-container:hover .slider-nav {
        opacity: 1;
      }

      .slider-nav:hover {
        background-color: rgba(22, 160, 133, 0.8);
        transform: translateY(-50%) scale(1.1);
      }

      .slider-prev {
        left: 20px;
      }

      .slider-next {
        right: 20px;
      }

      .slider-dots {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translate(-50%);
      }

      .slider-dot {
        width: 12px;
        height: 12px;
        background-color: #ddd;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .slider-dot:hover {
        background-color: #bbb;
      }

      .slider-dot.active {
        background-color: var(--secondary);
        width: 30px;
        border-radius: 10px;
      }

      /* Developer Info */
      .developer {
        background-color: var(--light);
        position: relative;
        overflow: hidden;
      }

      .developer::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at bottom left,
          rgba(151, 101, 64, 0.06); 0%,
          transparent 70%
        );
      }

      .developer-card {
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        margin-bottom: 30px;
        transition: all 0.5s ease;
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateY(30px);
      }

      .developer-card.animate-active {
        opacity: 1;
        transform: translateY(0);
      }

      .developer-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .developer-content {
        display: flex;
        flex-direction: row-reverse;
      }

      .developer-text {
        flex: 1;
        padding: 40px;
        position: relative;
        overflow: hidden;
      }

      .developer-text::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(
          to right,
          var(--secondary) 0%,
          transparent 100%
        );
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s ease;
      }

      .developer-card:hover .developer-text::after {
        transform: scaleX(1);
        transform-origin: left;
      }

      .developer-title {
        font-size: 28px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
      }

      .developer-title::after {
        content: "";
        position: absolute;
        bottom: -5px;
        right: 0;
        width: 0;
        height: 2px;
        background-color: var(--secondary);
        transition: width 0.5s ease;
      }

      .developer-card:hover .developer-title::after {
        width: 100%;
      }

      .developer-description {
       
        line-height: 1.8;
      }

      .developer-logo {
        width: 40%;
        background-color: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
        position: relative;
        overflow: hidden;
      }

      .developer-logo::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at center,
          rgba(22, 160, 133, 0.1) 0%,
          transparent 70%
        );
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      .developer-card:hover .developer-logo::before {
        opacity: 1;
      }

      .developer-logo img {
        max-width: 200px;
        transition: all 0.5s ease;
        filter: grayscale(30%);
      }

      .developer-card:hover .developer-logo img {
        transform: scale(1.1);
        filter: grayscale(0%);
      }

      /* Location Map */
      .location {
        background-color: var(--white);
        position: relative;
        overflow: hidden;
      }

      .location::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(151, 101, 64, 0.06);;
        border-radius: 50%;
      }

      .map-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        margin-bottom: 30px;
        transition: all 0.5s ease;
        position: relative;
        opacity: 0;
        transform: scale(0.95);
      }

      .map-container.animate-active {
        opacity: 1;
        transform: scale(1);
      }

      .map-container::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(151 101 64 / 10%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
      }

      .map-container:hover::after {
        opacity: 1;
      }

      .map-container:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .map-container iframe {
        width: 100%;
        height: 500px;
        border: 0;
        transition: all 0.5s ease;
      }

      .map-container:hover iframe {
        filter: saturate(1.2);
      }

      .location-description {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease;
      }

      .location-description.animate-active {
        opacity: 1;
        transform: translateY(0);
      }

      /* Contact Form and Footer Info */
      .contact-footer {
        background-color: var(--light);
        position: relative;
        overflow: hidden;
      }

      .contact-footer::after {
        content: "";
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(151, 101, 64, 0.06);
        border-radius: 50%;
      }

      .contact-footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        position: relative;
        z-index: 1;
      }

      @media (max-width: 992px) {
        .contact-footer-grid {
          grid-template-columns: 1fr;
        }
      }

      .contact-form {
        background-color: var(--white);
        padding: 40px;
        border-radius: 10px;
        box-shadow: var(--shadow);
        transition: all 0.5s ease;
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateY(30px);
      }

      .contact-form h3, .footer-locations-container h3{
        font-size: 26px;
    margin-bottom: 30px;
      }

      .contact-form.animate-active {
        opacity: 1;
        transform: translateY(0);
      }

      .contact-form:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .form-group {
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
      }

      .form-control {
        width: 100%;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: "Cairo", sans-serif;
        font-size: 16px;
        transition: all 0.3s ease;
        text-align: right;
        background-color: transparent;
        position: relative;
        z-index: 1;
      }

      .form-control:focus {
        border-color: var(--secondary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.1);
      }

      .form-group::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 2px;
        background-color: var(--secondary);
        transition: width 0.5s ease;
      }

      .form-group:focus-within::after {
        width: 100%;
      }

      textarea.form-control {
        height: 150px;
        resize: none;
      }

      .form-button {
        width: 100%;
        position: relative;
        overflow: hidden;
      }

      .form-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        transition: all 0.5s ease;
      }

      .form-button:hover::before {
        left: 100%;
      }

      /* Footer Locations */
      .footer-locations-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .footer-locations {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
      }

      .footer-location {
        background-color: var(--white);
        border-radius: 10px;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
      }

      .footer-location.animate-active {
        opacity: 1;
        transform: translateY(0);
      }

      .footer-location:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .footer-location-title {
        font-size: 18px;
        margin-bottom: 10px;
        color: var(--primary);
        position: relative;
        display: inline-block;
      }

      .footer-location-title::after {
        content: "";
        position: absolute;
        bottom: -5px;
        right: 0;
        width: 0;
        height: 2px;
        background-color: var(--secondary);
        transition: width 0.3s ease;
      }

      .footer-location:hover .footer-location-title::after {
        width: 100%;
      }

      .footer-location-address {
       
        margin-bottom: 10px;
        line-height: 1.6;
      }

      .footer-location-phone {
        display: flex;
        align-items: center;
       
        transition: all 0.3s ease;
        justify-content: flex-end;
      }

      .footer-location-phone:hover {
        color: var(--secondary);
        transform: translateX(-5px);
      }

      .footer-location-phone i {
        margin-left: 10px;
        color: #25d366;
      }

      .footer-social {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin: 30px 0;
      }

      .footer-social a {
        width: 40px;
        height: 40px;
        background-color: rgba(44, 62, 80, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
      }

      .footer-social a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at center,
          rgba(255, 255, 255, 0.3) 0%,
          transparent 70%
        );
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      .footer-social a:hover::before {
        opacity: 1;
      }

      .footer-social a:hover {
        background-color: var(--secondary);
        color: var(--white);
        transform: translateY(-5px) rotate(360deg);
      }

      .footer-logo-img {
        margin: 20px auto;
        display: block;
        transition: all 0.5s ease;
      }

      .footer-logo-img:hover {
        transform: scale(1.05);
      }

      .footer-copyright {
        text-align: center;
        margin-top: 20px;
        /* color: var(--text); */
        transition: all 0.3s ease;
      }

      .footer-copyright:hover {
        color: var(--secondary);
      }

      /* Success Message */
      .success-message {
        background-color: var(--white);
        border-radius: 10px;
        padding: 40px;
        text-align: center;
        box-shadow: var(--shadow);
        transition: all 0.5s ease;
      }

      .success-message:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .success-icon {
        width: 80px;
        height: 80px;
        background-color: rgb(151 101 64 / 10%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: var(--secondary);
        font-size: 36px;
        animation: pulse 1.5s infinite;
      }

      .success-title {
        font-size: 24px;
        margin-bottom: 15px;
        color: var(--secondary);
      }

      .success-text {
        color: var(--text-light);
      }

      /* Fixed Contact Buttons */
      .fixed-contact {
        position: fixed;
        bottom: 30px;
        z-index: 99;
      }

      .fixed-contact a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 24px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
      }

      .fixed-contact a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at center,
          rgba(255, 255, 255, 0.3) 0%,
          transparent 70%
        );
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      .fixed-contact a:hover::before {
        opacity: 1;
      }

      .fixed-contact a:hover {
        transform: translateY(-5px) scale(1.1);
      }

      .whatsapp-button {
        background-color: #25d366;
        right: 30px;
        border-radius: 50%;
      }

      .call-button {
        background-color: var(--secondary);
        left: 30px;
        border-radius: 50%;
      }

      /* Footer Bottom */
      .footer-bottom {
        background-color: var(--secondary);
        color: var(--white);
        padding: 20px 0;
        text-align: center;
        position: relative;
        z-index: 1;
      }

      /* Mobile Menu */
      .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
        backdrop-filter: blur(5px);
      }

      .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      /* Floor Plans Section */
      .floor-plans {
        background-color: var(--light);
        position: relative;
        overflow: hidden;
      }

      .floor-plans::before {
        content: "";
        position: absolute;
        top: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background-color: rgba(151, 101, 64, 0.06);;
        border-radius: 50%;
      }

      .floor-plans-tabs {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
        flex-wrap: wrap;
      }

      .floor-plan-tab {
        padding: 12px 25px;
        background-color: var(--white);
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: var(--shadow);
        font-weight: 500;
      }

      .floor-plan-tab.active {
        background-color: var(--secondary);
        color: var(--white);
      }

      .floor-plan-tab:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .floor-plans-content {
        position: relative;
        z-index: 1;
        margin-bottom: 30px;
      }

      .floor-plan-item {
        display: none;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
      }

      .floor-plan-item.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
      }

      .floor-plan-image {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        margin-bottom: 20px;
        transition: all 0.5s ease;
      }

      .floor-plan-image:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .floor-plan-image img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
      }

      .floor-plan-image:hover img {
        transform: scale(1.05);
      }

      .floor-plan-details {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 30px;
      }

      .floor-plan-info {
        background-color: var(--white);
        border-radius: 10px;
        padding: 20px;
        box-shadow: var(--shadow);
        text-align: center;
        transition: all 0.3s ease;
      }

      .floor-plan-info:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .floor-plan-info-title {
        font-size: 16px;
        color: var(--text-light);
        margin-bottom: 5px;
      }

      .floor-plan-info-value {
        font-size: 24px;
        font-weight: 700;
        color: var(--primary);
      }

      /* Amenities Section */
      .amenities {
        background-color: var(--white);
        position: relative;
        overflow: hidden;
      }

      .amenities::after {
        content: "";
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(151, 101, 64, 0.06);;
        border-radius: 50%;
      }

      .amenities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 1;
      }

      .amenity-card {
        display: flex;
        flex-direction: column;
        background-color: #97654017;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateY(30px);
      }

      .amenity-card.animate-active {
        opacity: 1;
        transform: translateY(0);
      }

      .amenity-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .amenity-image {
        height: 200px;
        overflow: hidden;
      }

      .amenity-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
      }

      .amenity-card:hover .amenity-image img {
        transform: scale(1.1);
      }

      .amenity-content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }

      .amenity-icon {
        width: 60px;
        height: 60px;
        background-color: rgb(151 101 64 / 10%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: all 0.5s ease;
      }

      .amenity-card:hover .amenity-icon {
        background-color: var(--secondary);
      }

      .amenity-icon i {
        font-size: 28px;
        color: var(--secondary);
        transition: all 0.5s ease;
      }

      .amenity-card:hover .amenity-icon i {
        color: var(--white);
      }

      .amenity-title {
        font-size: 22px;
        margin-bottom: 15px;
        transition: all 0.3s ease;
      }

      .amenity-card:hover .amenity-title {
        color: var(--secondary);
      }

      .amenity-description {
        color: var(--text-light);
        flex: 1;
        line-height: 1.6;
      }

      /* Construction Progress Section */
      .construction-progress {
        background-color: var(--light);
        position: relative;
        overflow: hidden;
      }

      .construction-progress::before {
        content: "";
        position: absolute;
        top: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(151, 101, 64, 0.06);
        border-radius: 50%;
      }

      .timeline {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px 0;
      }

      .timeline::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 50%;
        width: 3px;
        background-color: var(--secondary);
        margin-right: -1.5px;
      }

      .timeline-item {
        position: relative;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
      }

      .timeline-item.animate-active {
        opacity: 1;
        transform: translateY(0);
      }

      .timeline-item:last-child {
        margin-bottom: 0;
      }

      .timeline-icon {
        position: absolute;
        top: 0;
        right: 50%;
        margin-right: -25px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 20px;
        box-shadow: 0 0 0 5px var(--light), 0 0 0 6px rgba(22, 160, 133, 0.3);
        z-index: 2;
        transition: all 0.5s ease;
      }

      .timeline-item:hover .timeline-icon {
        transform: scale(1.1);
        box-shadow: 0 0 0 5px var(--light), 0 0 0 6px rgba(22, 160, 133, 0.5);
      }

      .timeline-content {
        position: relative;
        width: 45%;
        padding: 25px;
        background-color: var(--white);
        border-radius: 10px;
        box-shadow: var(--shadow);
        transition: all 0.5s ease;
      }

      .timeline-item:hover .timeline-content {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .timeline-item:nth-child(even) .timeline-content {
        margin-right: auto;
      }

      .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto;
      }

      .timeline-date {
        font-size: 14px;
        color: var(--text-light);
        margin-bottom: 10px;
      }

      .timeline-title {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--primary);
        transition: all 0.3s ease;
      }

      .timeline-item:hover .timeline-title {
        color: var(--secondary);
      }

      .timeline-description {
        line-height: 1.6;
      }

      .progress-percentage {
        display: flex;
        justify-content: space-between;
        margin: 50px 0 10px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        direction: rtl;
      }

      .progress-bar-container {
        height: 10px;
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        max-width: 1000px;
        margin: 0 auto 30px;
        box-shadow: var(--shadow);
        direction: rtl;
      }

      .progress-bar {
        height: 100%;
        border-radius: 10px;
        background: linear-gradient(
          90deg,
          var(--secondary) 0%,
          var(--primary) 100%
        );
        width: 75%;
        transition: width 1.5s cubic-bezier(0.1, 0.45, 0.1, 1);
      }

      /* Testimonials Section */
      .testimonials {
        background-color: var(--white);
        position: relative;
        overflow: hidden;
      }

      .testimonials::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(151, 101, 64, 0.06);;
        border-radius: 50%;
      }

      .testimonials-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
      }

      .testimonials-slider {
        position: relative;
        overflow: hidden;
        padding-bottom: 70px;
      }

      .testimonials-wrapper {
        display: flex;
        transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        direction: rtl;
      }

      .testimonial-item {
        flex: 0 0 100%;
        opacity: 0;
        transform: scale(0.9);
      }

      .testimonial-item.active {
        opacity: 1;
        transform: scale(1);
        transition: all 0.5s ease;
      }

      .testimonial-card {
        background-color: var(--light);
        border-radius: 10px;
        padding: 40px;
        box-shadow: var(--shadow);
        margin: 0 20px;
        position: relative;
        transition: all 0.5s ease;
      }

      .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .testimonial-card::before {
        content: "\201C";
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 80px;
        color: rgba(22, 160, 133, 0.1);
        font-family: Georgia, serif;
        line-height: 1;
      }

      .testimonial-text {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 30px;
        /* color: var(--text); */
        position: relative;
        z-index: 1;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
      }

      .testimonial-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-left: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .testimonial-info {
        flex: 1;
      }

      .testimonial-name {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
      }

      .testimonial-position {
        font-size: 14px;
        color: var(--text-light);
      }

      .testimonial-rating {
        margin-top: 10px;
        color: #ffc107;
        font-size: 18px;
      }

      .testimonials-dots {
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        gap: 10px;
      }

      .testimonials-dot {
        width: 12px;
        height: 12px;
        background-color: #ddd;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .testimonials-dot:hover {
        background-color: #bbb;
      }

      .testimonials-dot.active {
        background-color: var(--secondary);
        width: 30px;
        border-radius: 10px;
      }

      /* Neighborhood Section */
      .neighborhood {
        background-color: var(--light);
        position: relative;
        overflow: hidden;
      }

      .neighborhood::after {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(151, 101, 64, 0.06);
        border-radius: 50%;
      }

      .nearby-places {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 1;
      }

      .nearby-category {
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateY(30px);
      }

      .nearby-category.animate-active {
        opacity: 1;
        transform: translateY(0);
      }

      .nearby-category:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .nearby-header {
        background-color: var(--primary);
        color: var(--white);
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
      }

      .nearby-icon {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }

      .nearby-category:hover .nearby-icon {
        background-color: var(--secondary);
        transform: rotateY(180deg);
      }

      .nearby-title {
        font-size: 22px;
        font-weight: 700;
      }

      .nearby-list {
        padding: 20px;
      }

      .nearby-item {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        transition: all 0.3s ease;
      }

      .nearby-item:last-child {
        border-bottom: none;
      }

      .nearby-item:hover {
        transform: translateX(-10px);
      }

      .nearby-item-name {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 500;
        transition: all 0.3s ease;
      }

      .nearby-category:hover .nearby-item-name {
        color: var(--secondary);
      }

      .nearby-item-distance {
        color: var(--text-light);
        font-size: 14px;
        display: flex;
        gap: 5px;
        align-items: center;
      }

      /* FAQ Section */
      .faq-section {
        background-color: var(--white);
        position: relative;
        overflow: hidden;
      }

      .faq-section::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background-color: rgba(151, 101, 64, 0.06);;
        border-radius: 50%;
      }

      .faq-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .faq-item {
        background-color: var(--light);
        border-radius: 10px;
        margin-bottom: 20px;
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateY(30px);
      }

      .faq-item.animate-active {
        opacity: 1;
        transform: translateY(0);
      }

      .faq-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .faq-question {
        padding: 20px;
        background-color: var(--white);
        font-weight: 700;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
      }

      .faq-question i {
        transition: all 0.3s ease;
      }

      .faq-item.active .faq-question {
        color: var(--secondary);
      }

      .faq-item.active .faq-question i {
        transform: rotate(180deg);
      }

      .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        line-height: 1.6;
      }

      .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 1000px;
      }

      /* Investment Benefits Section */
      .investment-benefits {
        background-color: var(--light);
        position: relative;
        overflow: hidden;
      }

      .investment-benefits::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(151, 101, 64, 0.06);;
        border-radius: 50%;
      }

      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 1;
      }

      .benefit-card {
        background-color: var(--white);
        border-radius: 10px;
        padding: 40px 30px;
        box-shadow: var(--shadow);
        text-align: center;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(30px);
      }

      .benefit-card.animate-active {
        opacity: 1;
        transform: translateY(0);
      }

      .benefit-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background-color: var(--secondary);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s ease;
      }

      .benefit-card:hover::before {
        transform: scaleX(1);
        transform-origin: left;
      }

      .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .benefit-icon {
        width: 80px;
        height: 80px;
        background-color: rgb(151 101 64 / 10%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        transition: all 0.5s ease;
      }

      .benefit-card:hover .benefit-icon {
        background-color: var(--secondary);
        transform: rotateY(360deg);
      }

      .benefit-icon i {
        font-size: 36px;
        color: var(--secondary);
        transition: all 0.5s ease;
      }

      .benefit-card:hover .benefit-icon i {
        color: var(--white);
      }

      .benefit-title {
        font-size: 22px;
        margin-bottom: 15px;
        transition: all 0.3s ease;
      }

      .benefit-card:hover .benefit-title {
        color: var(--secondary);
      }

      .benefit-description {
        color: var(--text-light);
        line-height: 1.6;
      }

      .benefit-stats {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        display: flex;
        justify-content: center;
        gap: 30px;
      }

      .benefit-stat {
        text-align: center;
      }

      .benefit-stat-value {
        font-size: 28px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 5px;
        transition: all 0.3s ease;
      }

      .benefit-card:hover .benefit-stat-value {
        color: var(--secondary);
      }

      .benefit-stat-label {
        font-size: 14px;
        color: var(--text-light);
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .hero-title {
          font-size: 48px;
        }

        .banner-title {
          font-size: 36px;
        }

        .developer-content {
          flex-direction: column;
        }

        .developer-logo {
          width: 100%;
          padding: 30px;
        }

        .contact-header {
          display: none;
        }

        .timeline::before {
          right: 60px;
        }

        .timeline-icon {
          right: 60px;
          margin-right: 0;
        }

        .timeline-content {
          width: calc(100% - 120px);
          margin-right: 120px !important;
          margin-left: 0 !important;
        }
      }

      @media (max-width: 768px) {
        .section-padding {
          padding: 70px 0;
        }

        .section-title h2 {
          font-size: 32px;
        }

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

        .hero-title {
          font-size: 36px;
        }

        .hero-description {
          font-size: 16px;
        }

        .hero-buttons {
          flex-direction: column;
          align-items: center;
          gap: 15px;
        }

        .nav-menu {
          position: fixed;
          top: 0;
          right: -100%;
          width: 80%;
          max-width: 300px;
          height: 100vh;
          background-color: var(--white);
          flex-direction: column;
          align-items: center;
          justify-content: center;
          transition: all 0.5s ease;
          z-index: 999;
        }

        .nav-menu.active {
          right: 0;
        }

        .nav-item {
          margin: 15px 0;
        }

        .nav-link {
          /* color: var(--text); */
        }

        .mobile-toggle {
          display: block;
          z-index: 1000;
        }

        .mobile-toggle.active {
          /* color: var(--text); */
        }

        .slider-nav {
          width: 40px;
          height: 40px;
          font-size: 20px;
        }

        .slider-prev {
          left: 10px;
        }

        .slider-next {
          right: 10px;
        }

        .timeline::before {
          right: 30px;
        }

        .timeline-icon {
          right: 30px;
          width: 40px;
          height: 40px;
          font-size: 16px;
        }

        .timeline-content {
          width: calc(100% - 80px);
          margin-right: 80px !important;
        }
      }

      @media (max-width: 576px) {
        .hero-title {
          font-size: 32px;
        }

        .btn {
          padding: 10px 25px;
        }

        .footer-locations {
          grid-template-columns: 1fr;
        }

        .timeline-content {
          padding: 15px;
        }

        .testimonial-card {
          padding: 20px;
          margin: 0 10px;
        }

        .testimonial-text {
          font-size: 16px;
        }
      }


      .elementor-editor-active .animate {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        visibility: visible !important;
    }
    
    .elementor-editor-active .section-title {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .elementor-editor-active .feature-card,
    .elementor-editor-active .showcase-card,
    .elementor-editor-active .amenity-card,
    .elementor-editor-active .timeline-item,
    .elementor-editor-active .nearby-category,
    .elementor-editor-active .footer-location,
    .elementor-editor-active .faq-item,
    .elementor-editor-active .benefit-card,
    .elementor-editor-active .contact-form,
    .elementor-editor-active .map-container,
    .elementor-editor-active .location-description,
    .elementor-editor-active .slider-container,
    .elementor-editor-active .developer-card {
        opacity: 1 !important;
        transform: none !important;
    }