      body {
        box-sizing: border-box;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html,
      body {
        height: 100%;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        scroll-behavior: smooth;
        overflow-x: hidden;
      }

      /* Header Styles */
      .header {
        position: fixed;
        top: 0;
        width: 100%;
        background: transparent;
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 2rem;
        transition: all 0.3s ease;
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 95vw;
        margin: 0 auto;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        animation: slideInLeft 1s ease-out;
      }

      .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
      }
.nav-menu li {
        display: flex;
        align-items:center;
       
      }
      .nav-menu a {
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-menu a:hover {
        color: #b59656;
      }

      .nav-menu a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #b59656;
        transition: width 0.3s ease;
      }

      .nav-menu a:hover::after {
        width: 100%;
      }

      /* Banner Section */
      .banner {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        display: flex;
        justify-content:center;
        align-items: end;
        padding: 2%;
        text-align: center;
        color: white;
         aspect-ratio: 16 / 9;
      }

      .banner video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        z-index: 0;
      }

      .banner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45); /* dark overlay for text visibility */
        z-index: 1;
      }

      .banner-content {
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(6px);
        padding: 2rem 3rem;
        border-radius: 20px;
        animation: fadeInUp 1.5s ease-out;
        max-width: 100%;
        display:flex;
                min-width:940px;

      }

      .name h1 {
        color: #b59656; /* Sobha gold accent */
        padding-bottom: 10px;
        width: 72%;
      } 
       .name h2 {
        color: white; /* Sobha gold accent */
        padding-bottom: 10px;
        font-size:30px;
            margin-bottom: 1rem;
      } 

      .name p {
        color: #fff;
        font-weight: 600;
      }

      .starting-price {
        font-size: 2rem;
        font-weight: 700;
        color: #b59656;
        animation: blink 3s infinite;
      }

      .cta-button {
        background:#b59656;
        color: #000;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        display:none;
      }

      .cta-button:hover {
        background: #e2c13d;
      }

      .name {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align:center;
        color: black;
        z-index: 999;
        border-right: 1px solid #ccc;
                min-width:50%;

      }

      /* Remove border from the 4th one */
      .name:nth-child(2) {
        border-right: none;
      }

      .price-info {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        padding: 1rem;
        border-radius: 12px;
        margin: 3rem 0;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        color: #2c3e50;
        min-width: 100%;
      }

      @keyframes blink {
        0%,
        50%,
        100% {
          opacity: 1;
        }

        25%,
        75% {
          opacity: 0;
        }
      }

      .price-label {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: #7f8c8d;
        font-weight: 500;
      }

      .configurations {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        font-size: 1.1rem;
        color: #333;
        padding: 1rem 0;
        max-height: 160px;
        flex-wrap: wrap;
      }

      .config-item {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
      }

      .config-item.visible {
        max-width: 330px;
        opacity: 1;
        transform: translateY(0);
      }

      .config-type {
        font-weight: 600;
        color: #2c3e50;
      }

      .banner h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        animation: slideInDown 1s ease-out 0.5s both;
      }

      .banner p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        animation: slideInUp 1s ease-out 1s both;
      }

      /* Section Styles */
      .section {
        padding: 3rem 0rem;
        margin: 0 auto;
      }

      .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #2c3e50;
        position: relative;
      }

      /* Overview Section */
      .overview {
        max-width: 85vw;
      }
      .overview-innerdiv {
        display: flex;
        justify-content: space-between;
      }
      .overview-img {
        position: relative;
        width: 40%;
        max-width: 40%;
        height: fit-content;
      }
      .overview-right{
          width:50%;
      }
      .overview-text {
        font-size: 20px;
        line-height: 1.8;
        color: #555;
        margin-top: 1rem;
        text-align: justify;
      }

      /* Masked image with diagonal cut */
      .masked-img {
        width: 100%;
        display: block;
        clip-path: polygon(0 0, 69% 0, 95% 51%, 0 210%);
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      }

      /* Overlay image */
      .overlay-img {
        position: absolute;
        bottom: 0;
        right: 10%;
        width: 50%;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(20%);
      }
      .overview-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .overview-card {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        opacity: 0;
        transform: translateY(50px);
      }

      .overview-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .overview-card.animate {
        animation: slideInUp 0.8s ease-out forwards;
      }

      .card-icon {
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
      }

      .overview-card h3 {
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: 600;
      }

      /* Gallery Section */

      .gallery-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 3rem;
        width: 100%;
        justify-content: center;
      }

      .gallery-item {
        border-radius: 12px;
        width: 400px;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
        position: relative;
      }

      .gallery-overlay {
        text-align: center;
        z-index: 2;
        transition: all 0.3s ease;
      }

      /* Amenities Section */
      .amenities {
        background: #000;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
      }
      .amenities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
        max-width: 95vw;
      }

      .amenity-item {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        min-width: 400px;
      }

      .amenity-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .amenity-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #b59656;
      }

      /* Location Section */
      .location {
        background: black;
        padding: 2rem;
      }
      .location h2 {
        color: white;
      }

      .location-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        color: white;
      }

      .location-info h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #b59656;
      }

      .location-map {
        height: 300px;
        background: #34495e;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
      }

      /* Nearby Locations */
      .nearby-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .nearby-item {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border-left: 4px solid #b59656;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }

      .nearby-icon {
        margin-bottom: 1rem;
        padding: 0.5rem;
        background: #f8f9fa;
        border-radius: 8px;
      }

      .nearby-item h3 {
        margin-bottom: 1rem;
        color: #2c3e50;
        font-weight: 600;
      }

      .nearby-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      }

      /* Contact Form */
      .contact-form {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background: #000;
        color: #fff;
        width: 320px;
        height: auto;
        border-radius: 15px;
        padding: 2rem;
        cursor: pointer;
        z-index: 999;
        transition: all 0.3s ease;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      }

      .contact-form:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 35px #f4d03f;
      }

      .contact-form.minimized {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #b59656;
        color: white;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
      }

      .contact-form.footer-mode {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        border-radius: 15px;
        background: white;
        color: #2c3e50;
        padding: 2rem;
      }

      .form-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #fff;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .form-group {
        margin-bottom: 1rem;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: #f4d03f;
      }

      .submit-btn {
        width: 100%;
        background: #b59656;
        color: #000;
        padding: 0.8rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
      }

      .submit-btn:hover {
        background: #d1a806;
      }

      .form-content {
        display: block;
      }

      .contact-form.minimized .form-content {
        display: none;
      }

      .contact-form.footer-mode .form-content {
        display: block;
      }

      .form-toggle {
        display: flex;
      }

      .contact-form.minimized .form-toggle {
        display: none;
                background:#b59656;

      }

      .minimized-content {
        display: none;
        align-items: center;
        justify-content: center;
        background:#b59656;
      }

      .contact-form.minimized .minimized-content {
        display: flex;
                background:#b59656;

      }

      .footer-contact-section {
        background: #34495e;
        padding: 3rem 2rem;
        margin-bottom: 0;
      }
      .contact-section {
        padding: 4rem 1rem;
        background-color: #000;
        text-align: center;
        display: flex;
      }

      .contact-section .section-title {
        font-size: 3rem;
        color: #b59656;
        margin-bottom: 0.5rem;
        text-align: left;
      }

      .contact-section .section-subtitle {
        font-size: 2rem;
        color: #fff;
        margin-bottom: 2rem;
      }

      .contact-form-container {
        min-width: 40%;
        margin: 0 auto;
        text-align: left;
      }

      .contact-form-1 .form-group {
        margin-bottom: 1.5rem;
      }

      .contact-form label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #333;
      }

      .contact-form-1 input,
      .contact-form-1 textarea {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 1rem;
        transition: border 0.3s;
      }

      .contact-form-1 input:focus,
      .contact-form-1 textarea:focus {
        outline: none;
        border-color: #b59656;
      }

      .btn-submit {
        background-color: #b59656;
        color: #fff;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.3s;
      }

      .btn-submit:hover {
        background-color: #d1a806;
      }
      .contact-upper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        max-width: 50%;
      }
      /* Responsive */
      @media (max-width: 768px) {
        .contact-form-container {
          padding: 0 1rem;
        }
        .price-info {
          margin: 0;
          max-width: 100%;
          min-height: 63vh;
        }
        .cta-button {
        background:#b59656;
        color: #000;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        display:flex;
        width:18%;
      }

      .cta-button:hover {
        background: #e2c13d;
      }
        .contact-section {
          flex-direction: column;
        }
        .contact-upper {
          max-width: 100%;
          margin-bottom: 2rem;
        }
        .location-info {
          max-width: 96vw;
        }
        .map {
          max-width: 90vw;
        }
        .overview-img {
          width: 100%;
          max-width: 100%;
        }
        .overview-innerdiv {
          display: block;
        }
    .overview-right{
        width:100%;
    }
        .overview-text {
          font-size: 20px;
          line-height: 1.8;
          color: #555;
          margin-top: 3rem;
          text-align: justify;
          width: 100%;
        }
        .contact-section .section-title {
          font-size: 2.5rem;
          text-align: center;
          color:#b59656f;
          margin-bottom: 0.5rem;
        }
        .contact-section .section-subtitle {
          font-size: 1rem;
          color: #fff;
          margin-bottom: 2rem;
        }

        .configurations {
          display: flex;
          flex-direction: column;
          gap: 0.8rem;
          font-size: 1.1rem;
          color: #333;
          padding: 1rem 0;
          flex-wrap: nowrap;
        }
        .nav-menu li:not(:last-child) {
  /* your styles here */
  display:none;
  border-bottom:none;
}
   .nav-menu a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: transparent;
        transition: width 0.3s ease;
      }


        .amenity-item {
          text-align: center;
          background: white;
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
          max-width: 85%;
          min-width: 0;
        }
          .name h2 {
        max-width:220px;
      } 
      }

      /* Downloads Section */
      .downloads-section {
        background: #f8f9fa;
        padding: 5rem 2rem;
      }

      .downloads-grid {
        display: flex;
        gap: 2rem;
        margin-top: 3rem;
      }

      .download-card {
        border-radius: 15px;
        transition: all 0.3s ease;
        text-align: center;
        display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 30vh;
      }

      .download-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .download-icon {
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
      }

      .download-card h3 {
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: 600;
      }

      .download-card p {
        color: #7f8c8d;
        margin-bottom: 0.5rem;
        line-height: 1.6;
      }

      .download-details {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;
        padding: 1rem;
        background: #b59656;
        border-radius: 8px;
        font-size: 0.9rem;
        color: #6c757d;
      }

      .download-btn {
        width: 100%;
        background: #b59656;
        color: black;
        padding: 1rem 1.5rem;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
      }

      .download-btn:hover {
        background: #d1a806;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(192, 57, 43, 0.3);
      }

      .download-btn:active {
        transform: translateY(0);
      }

      .download-btn.downloading {
        background: #f39c12;
        cursor: not-allowed;
      }

      .download-btn.completed {
        background: #27ae60;
      }

      .download-notice {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        margin-top: 3rem;
        border-left: 4px solid #074e2a;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .notice-icon {
        flex-shrink: 0;
        margin-top: 0.2rem;
      }

      .download-notice p {
        margin: 0;
        color: #2c3e50;
        line-height: 1.6;
      }

      /* Footer */
      .footer {
        background: #b59656;
        color: white;
        text-align: center;
        font-weight: 700;
      }
      .video {
        position: absolute;
      }
      #gallery-section {
        padding:  1rem;
        text-align: center;
        background: #f8f8f8;
      }

      #gallery-tabs {
        margin-bottom: 2rem;
      }

      #gallery-tabs button {
        padding: 0.8rem 1.5rem;
        border: none;
        cursor: pointer;
        font-weight: 600;
        background: transparent;
        color: #333;
        border-bottom: 2px solid transparent;
        transition: 0.3s;
      }

      #gallery-tabs button.active {
        color: #b59656;
        border-bottom: 2px solid #b59656;
      }

      .gallery-scroll {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.5rem;
      }

      .gallery-item {
        width: 300px;
        height: 300px;
        position: relative;
        border-radius: 15px;
        cursor: pointer;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      }

      .gallery-item .img-wrapper,
      .gallery-item .video-placeholder {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
      }

      .gallery-caption {
        margin-top: 0.8rem;
        font-weight: 500;
        color: #444;
      }

      .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .play-icon img {
        width: 25px;
        height: 25px;
      }
      .accordion {
        width: 100%;
        padding: 0 10%;
      }
      .accordion-btn {
        width: 100%;
        background: #fff;
        cursor: pointer;
        border: none;
        height: 7vh;
        text-align: left;
        font-weight: 700;
        font-size: large;
      }
      .accordion-content {
        display: none;
        padding: 0.5rem 1rem;
      }
      .accordion-btn.active + .accordion-content {
        display: block;
      }
      /* Animations */
      @keyframes slideInLeft {
        from {
          transform: translateX(-100px);
          opacity: 0;
        }

        to {
          transform: translateX(0);
          opacity: 1;
        }
      }

      @keyframes slideInDown {
        from {
          transform: translateY(-100px);
          opacity: 0;
        }

        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      @keyframes slideInUp {
        from {
          transform: translateY(100px);
          opacity: 0;
        }

        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      @keyframes fadeInUp {
        from {
          transform: translateY(50px);
          opacity: 0;
        }

        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
        }

        50% {
          transform: scale(1.05);
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }

        50% {
          transform: translateY(-20px);
        }
      }

      @keyframes slideInRight {
        from {
          transform: translateX(100px);
          opacity: 0;
        }

        to {
          transform: translateX(0);
          opacity: 1;
        }
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        

        .banner {
          padding: 2rem 1rem;
          justify-content:center;
          
          
        }
        .banner-content{
            backdrop-filter:blur(0px);
            background:transparent;
            flex-direction:column;
                    align-items:center;

        }
        .banner-content .name:first-child {
    display: none;
}

        .banner h1 {
          font-size: 2rem;
        }
        .config-type {
          font-size: 12px;
        }
        .video {
          display: flex;
        }
        .banner p {
          font-size: 2rem;
        }

        .configurations {
          grid-template-columns: 1fr 1fr;
        }
        .banner-content {
          max-height: fit-content;
        }
        .starting-price {
          font-size: 2rem;
        }

        .location-content {
          grid-template-columns: 1fr;
        }
        .section {
          padding: 2rem 1rem;
        }
        .amenities-grid {
          max-width: 100%;
        }
        .downloads-grid {
        display: flex;
        flex-direction:column;
        gap: 2rem;
        margin-top: 3rem;
      }
      
      }
.nav-menu .phone-number {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: #b59656; 
  color: #000; 
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 10px #b59656, 0 0 20px #b59656, 0 0 30px #b59656;
  animation: boxGlow 1.5s infinite alternate;
  text-decoration: none; /* remove underline */
}
.nav-menu .phone-number:hover {
  color: #fff; /* text becomes white on hover */
  box-shadow: 0 0 20px #f4d03f, 0 0 40px #f4d03f, 0 0 60px #f4d03f; /* stronger glow on hover */
}
@keyframes boxGlow {
  0% {
    box-shadow: 0 0 10px #b59656, 0 0 20px #b59656, 0 0 30px #b59656;
  }
  50% {
    box-shadow: 0 0 20px #f4d03f, 0 0 40px #f4d03f, 0 0 60px #f4d03f;
  }
  100% {
    box-shadow: 0 0 10px #b59656, 0 0 20px #b59656, 0 0 30px #b59656;
  }
}


